├── .gitignore ├── LICENSE ├── README.md └── iOS8SelfSizingCells ├── iOS8SelfSizingCells.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── iOS8SelfSizingCells ├── AppDelegate.h ├── AppDelegate.m ├── Base.lproj │ ├── LaunchScreen.xib │ └── Main.storyboard ├── Controller │ ├── InstagramFeedTableViewController.h │ └── InstagramFeedTableViewController.m ├── Images.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── heartShape.imageset │ │ ├── Contents.json │ │ ├── heartShape.png │ │ └── heartShape@2x.png │ ├── photo.imageset │ │ ├── Contents.json │ │ └── photo@2x.png │ └── speechBubble.imageset │ │ ├── Contents.json │ │ ├── speechBubble.png │ │ └── speechBubble@2x.png ├── Info.plist ├── Model │ ├── InstagramItem.h │ └── InstagramItem.m ├── UITableViewController+KYSelfSizingPushFix.h ├── UITableViewController+KYSelfSizingPushFix.m ├── Vender │ └── WPAttributedMarkup │ │ ├── NSMutableString+TagReplace.h │ │ ├── NSMutableString+TagReplace.m │ │ ├── NSString+WPAttributedMarkup.h │ │ ├── NSString+WPAttributedMarkup.m │ │ ├── WPAttributedStyleAction.h │ │ ├── WPAttributedStyleAction.m │ │ ├── WPHotspotLabel.h │ │ ├── WPHotspotLabel.m │ │ ├── WPTappableLabel.h │ │ └── WPTappableLabel.m ├── View │ ├── InstagramFeedTableViewCell.h │ └── InstagramFeedTableViewCell.m └── main.m └── iOS8SelfSizingCellsTests ├── Info.plist └── iOS8SelfSizingCellsTests.m /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/iOS8SelfSizingCells/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/iOS8SelfSizingCells/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/iOS8SelfSizingCells/HEAD/README.md -------------------------------------------------------------------------------- /iOS8SelfSizingCells/iOS8SelfSizingCells.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/iOS8SelfSizingCells/HEAD/iOS8SelfSizingCells/iOS8SelfSizingCells.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /iOS8SelfSizingCells/iOS8SelfSizingCells.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/iOS8SelfSizingCells/HEAD/iOS8SelfSizingCells/iOS8SelfSizingCells.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /iOS8SelfSizingCells/iOS8SelfSizingCells/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/iOS8SelfSizingCells/HEAD/iOS8SelfSizingCells/iOS8SelfSizingCells/AppDelegate.h -------------------------------------------------------------------------------- /iOS8SelfSizingCells/iOS8SelfSizingCells/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/iOS8SelfSizingCells/HEAD/iOS8SelfSizingCells/iOS8SelfSizingCells/AppDelegate.m -------------------------------------------------------------------------------- /iOS8SelfSizingCells/iOS8SelfSizingCells/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/iOS8SelfSizingCells/HEAD/iOS8SelfSizingCells/iOS8SelfSizingCells/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /iOS8SelfSizingCells/iOS8SelfSizingCells/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/iOS8SelfSizingCells/HEAD/iOS8SelfSizingCells/iOS8SelfSizingCells/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /iOS8SelfSizingCells/iOS8SelfSizingCells/Controller/InstagramFeedTableViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/iOS8SelfSizingCells/HEAD/iOS8SelfSizingCells/iOS8SelfSizingCells/Controller/InstagramFeedTableViewController.h -------------------------------------------------------------------------------- /iOS8SelfSizingCells/iOS8SelfSizingCells/Controller/InstagramFeedTableViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/iOS8SelfSizingCells/HEAD/iOS8SelfSizingCells/iOS8SelfSizingCells/Controller/InstagramFeedTableViewController.m -------------------------------------------------------------------------------- /iOS8SelfSizingCells/iOS8SelfSizingCells/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/iOS8SelfSizingCells/HEAD/iOS8SelfSizingCells/iOS8SelfSizingCells/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /iOS8SelfSizingCells/iOS8SelfSizingCells/Images.xcassets/heartShape.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/iOS8SelfSizingCells/HEAD/iOS8SelfSizingCells/iOS8SelfSizingCells/Images.xcassets/heartShape.imageset/Contents.json -------------------------------------------------------------------------------- /iOS8SelfSizingCells/iOS8SelfSizingCells/Images.xcassets/heartShape.imageset/heartShape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/iOS8SelfSizingCells/HEAD/iOS8SelfSizingCells/iOS8SelfSizingCells/Images.xcassets/heartShape.imageset/heartShape.png -------------------------------------------------------------------------------- /iOS8SelfSizingCells/iOS8SelfSizingCells/Images.xcassets/heartShape.imageset/heartShape@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/iOS8SelfSizingCells/HEAD/iOS8SelfSizingCells/iOS8SelfSizingCells/Images.xcassets/heartShape.imageset/heartShape@2x.png -------------------------------------------------------------------------------- /iOS8SelfSizingCells/iOS8SelfSizingCells/Images.xcassets/photo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/iOS8SelfSizingCells/HEAD/iOS8SelfSizingCells/iOS8SelfSizingCells/Images.xcassets/photo.imageset/Contents.json -------------------------------------------------------------------------------- /iOS8SelfSizingCells/iOS8SelfSizingCells/Images.xcassets/photo.imageset/photo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/iOS8SelfSizingCells/HEAD/iOS8SelfSizingCells/iOS8SelfSizingCells/Images.xcassets/photo.imageset/photo@2x.png -------------------------------------------------------------------------------- /iOS8SelfSizingCells/iOS8SelfSizingCells/Images.xcassets/speechBubble.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/iOS8SelfSizingCells/HEAD/iOS8SelfSizingCells/iOS8SelfSizingCells/Images.xcassets/speechBubble.imageset/Contents.json -------------------------------------------------------------------------------- /iOS8SelfSizingCells/iOS8SelfSizingCells/Images.xcassets/speechBubble.imageset/speechBubble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/iOS8SelfSizingCells/HEAD/iOS8SelfSizingCells/iOS8SelfSizingCells/Images.xcassets/speechBubble.imageset/speechBubble.png -------------------------------------------------------------------------------- /iOS8SelfSizingCells/iOS8SelfSizingCells/Images.xcassets/speechBubble.imageset/speechBubble@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/iOS8SelfSizingCells/HEAD/iOS8SelfSizingCells/iOS8SelfSizingCells/Images.xcassets/speechBubble.imageset/speechBubble@2x.png -------------------------------------------------------------------------------- /iOS8SelfSizingCells/iOS8SelfSizingCells/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/iOS8SelfSizingCells/HEAD/iOS8SelfSizingCells/iOS8SelfSizingCells/Info.plist -------------------------------------------------------------------------------- /iOS8SelfSizingCells/iOS8SelfSizingCells/Model/InstagramItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/iOS8SelfSizingCells/HEAD/iOS8SelfSizingCells/iOS8SelfSizingCells/Model/InstagramItem.h -------------------------------------------------------------------------------- /iOS8SelfSizingCells/iOS8SelfSizingCells/Model/InstagramItem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/iOS8SelfSizingCells/HEAD/iOS8SelfSizingCells/iOS8SelfSizingCells/Model/InstagramItem.m -------------------------------------------------------------------------------- /iOS8SelfSizingCells/iOS8SelfSizingCells/UITableViewController+KYSelfSizingPushFix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/iOS8SelfSizingCells/HEAD/iOS8SelfSizingCells/iOS8SelfSizingCells/UITableViewController+KYSelfSizingPushFix.h -------------------------------------------------------------------------------- /iOS8SelfSizingCells/iOS8SelfSizingCells/UITableViewController+KYSelfSizingPushFix.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/iOS8SelfSizingCells/HEAD/iOS8SelfSizingCells/iOS8SelfSizingCells/UITableViewController+KYSelfSizingPushFix.m -------------------------------------------------------------------------------- /iOS8SelfSizingCells/iOS8SelfSizingCells/Vender/WPAttributedMarkup/NSMutableString+TagReplace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/iOS8SelfSizingCells/HEAD/iOS8SelfSizingCells/iOS8SelfSizingCells/Vender/WPAttributedMarkup/NSMutableString+TagReplace.h -------------------------------------------------------------------------------- /iOS8SelfSizingCells/iOS8SelfSizingCells/Vender/WPAttributedMarkup/NSMutableString+TagReplace.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/iOS8SelfSizingCells/HEAD/iOS8SelfSizingCells/iOS8SelfSizingCells/Vender/WPAttributedMarkup/NSMutableString+TagReplace.m -------------------------------------------------------------------------------- /iOS8SelfSizingCells/iOS8SelfSizingCells/Vender/WPAttributedMarkup/NSString+WPAttributedMarkup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/iOS8SelfSizingCells/HEAD/iOS8SelfSizingCells/iOS8SelfSizingCells/Vender/WPAttributedMarkup/NSString+WPAttributedMarkup.h -------------------------------------------------------------------------------- /iOS8SelfSizingCells/iOS8SelfSizingCells/Vender/WPAttributedMarkup/NSString+WPAttributedMarkup.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/iOS8SelfSizingCells/HEAD/iOS8SelfSizingCells/iOS8SelfSizingCells/Vender/WPAttributedMarkup/NSString+WPAttributedMarkup.m -------------------------------------------------------------------------------- /iOS8SelfSizingCells/iOS8SelfSizingCells/Vender/WPAttributedMarkup/WPAttributedStyleAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/iOS8SelfSizingCells/HEAD/iOS8SelfSizingCells/iOS8SelfSizingCells/Vender/WPAttributedMarkup/WPAttributedStyleAction.h -------------------------------------------------------------------------------- /iOS8SelfSizingCells/iOS8SelfSizingCells/Vender/WPAttributedMarkup/WPAttributedStyleAction.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/iOS8SelfSizingCells/HEAD/iOS8SelfSizingCells/iOS8SelfSizingCells/Vender/WPAttributedMarkup/WPAttributedStyleAction.m -------------------------------------------------------------------------------- /iOS8SelfSizingCells/iOS8SelfSizingCells/Vender/WPAttributedMarkup/WPHotspotLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/iOS8SelfSizingCells/HEAD/iOS8SelfSizingCells/iOS8SelfSizingCells/Vender/WPAttributedMarkup/WPHotspotLabel.h -------------------------------------------------------------------------------- /iOS8SelfSizingCells/iOS8SelfSizingCells/Vender/WPAttributedMarkup/WPHotspotLabel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/iOS8SelfSizingCells/HEAD/iOS8SelfSizingCells/iOS8SelfSizingCells/Vender/WPAttributedMarkup/WPHotspotLabel.m -------------------------------------------------------------------------------- /iOS8SelfSizingCells/iOS8SelfSizingCells/Vender/WPAttributedMarkup/WPTappableLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/iOS8SelfSizingCells/HEAD/iOS8SelfSizingCells/iOS8SelfSizingCells/Vender/WPAttributedMarkup/WPTappableLabel.h -------------------------------------------------------------------------------- /iOS8SelfSizingCells/iOS8SelfSizingCells/Vender/WPAttributedMarkup/WPTappableLabel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/iOS8SelfSizingCells/HEAD/iOS8SelfSizingCells/iOS8SelfSizingCells/Vender/WPAttributedMarkup/WPTappableLabel.m -------------------------------------------------------------------------------- /iOS8SelfSizingCells/iOS8SelfSizingCells/View/InstagramFeedTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/iOS8SelfSizingCells/HEAD/iOS8SelfSizingCells/iOS8SelfSizingCells/View/InstagramFeedTableViewCell.h -------------------------------------------------------------------------------- /iOS8SelfSizingCells/iOS8SelfSizingCells/View/InstagramFeedTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/iOS8SelfSizingCells/HEAD/iOS8SelfSizingCells/iOS8SelfSizingCells/View/InstagramFeedTableViewCell.m -------------------------------------------------------------------------------- /iOS8SelfSizingCells/iOS8SelfSizingCells/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/iOS8SelfSizingCells/HEAD/iOS8SelfSizingCells/iOS8SelfSizingCells/main.m -------------------------------------------------------------------------------- /iOS8SelfSizingCells/iOS8SelfSizingCellsTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/iOS8SelfSizingCells/HEAD/iOS8SelfSizingCells/iOS8SelfSizingCellsTests/Info.plist -------------------------------------------------------------------------------- /iOS8SelfSizingCells/iOS8SelfSizingCellsTests/iOS8SelfSizingCellsTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhzengAIB/iOS8SelfSizingCells/HEAD/iOS8SelfSizingCells/iOS8SelfSizingCellsTests/iOS8SelfSizingCellsTests.m --------------------------------------------------------------------------------