├── .DS_Store ├── .gitignore ├── README.md ├── iOS8DynamicTypeDemo.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── iOS8DynamicTypeDemo ├── AppDelegate.swift ├── Base.lproj │ └── Main.storyboard ├── Images.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── seinfeld_jerry-1.png │ │ ├── seinfeld_jerry-2.png │ │ └── seinfeld_jerry.png │ └── LaunchImage.launchimage │ │ └── Contents.json ├── Info.plist ├── Quote.swift ├── QuoteTableViewCell.swift └── QuotesTableViewController.swift └── iOS8DynamicTypeDemoTests ├── Info.plist └── iOS8DynamicTypeDemoTests.swift /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/iOS8DynamicTypeDemo/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/iOS8DynamicTypeDemo/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/iOS8DynamicTypeDemo/HEAD/README.md -------------------------------------------------------------------------------- /iOS8DynamicTypeDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/iOS8DynamicTypeDemo/HEAD/iOS8DynamicTypeDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /iOS8DynamicTypeDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/iOS8DynamicTypeDemo/HEAD/iOS8DynamicTypeDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /iOS8DynamicTypeDemo/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/iOS8DynamicTypeDemo/HEAD/iOS8DynamicTypeDemo/AppDelegate.swift -------------------------------------------------------------------------------- /iOS8DynamicTypeDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/iOS8DynamicTypeDemo/HEAD/iOS8DynamicTypeDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /iOS8DynamicTypeDemo/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/iOS8DynamicTypeDemo/HEAD/iOS8DynamicTypeDemo/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /iOS8DynamicTypeDemo/Images.xcassets/AppIcon.appiconset/seinfeld_jerry-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/iOS8DynamicTypeDemo/HEAD/iOS8DynamicTypeDemo/Images.xcassets/AppIcon.appiconset/seinfeld_jerry-1.png -------------------------------------------------------------------------------- /iOS8DynamicTypeDemo/Images.xcassets/AppIcon.appiconset/seinfeld_jerry-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/iOS8DynamicTypeDemo/HEAD/iOS8DynamicTypeDemo/Images.xcassets/AppIcon.appiconset/seinfeld_jerry-2.png -------------------------------------------------------------------------------- /iOS8DynamicTypeDemo/Images.xcassets/AppIcon.appiconset/seinfeld_jerry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/iOS8DynamicTypeDemo/HEAD/iOS8DynamicTypeDemo/Images.xcassets/AppIcon.appiconset/seinfeld_jerry.png -------------------------------------------------------------------------------- /iOS8DynamicTypeDemo/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/iOS8DynamicTypeDemo/HEAD/iOS8DynamicTypeDemo/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /iOS8DynamicTypeDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/iOS8DynamicTypeDemo/HEAD/iOS8DynamicTypeDemo/Info.plist -------------------------------------------------------------------------------- /iOS8DynamicTypeDemo/Quote.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/iOS8DynamicTypeDemo/HEAD/iOS8DynamicTypeDemo/Quote.swift -------------------------------------------------------------------------------- /iOS8DynamicTypeDemo/QuoteTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/iOS8DynamicTypeDemo/HEAD/iOS8DynamicTypeDemo/QuoteTableViewCell.swift -------------------------------------------------------------------------------- /iOS8DynamicTypeDemo/QuotesTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/iOS8DynamicTypeDemo/HEAD/iOS8DynamicTypeDemo/QuotesTableViewController.swift -------------------------------------------------------------------------------- /iOS8DynamicTypeDemoTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/iOS8DynamicTypeDemo/HEAD/iOS8DynamicTypeDemoTests/Info.plist -------------------------------------------------------------------------------- /iOS8DynamicTypeDemoTests/iOS8DynamicTypeDemoTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/iOS8DynamicTypeDemo/HEAD/iOS8DynamicTypeDemoTests/iOS8DynamicTypeDemoTests.swift --------------------------------------------------------------------------------