├── 1.gif ├── 2.gif ├── InstagramFeedView.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── Sagar_Shirbhate.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── Sagar_Shirbhate.xcuserdatad │ └── xcschemes │ ├── InstagramFeedView.xcscheme │ └── xcschememanagement.plist ├── InstagramFeedView ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── unnamed-29@2x.png │ │ └── unnamed-29@3x.png │ ├── Comment.imageset │ │ ├── Contents.json │ │ ├── ic_chat_1-1.png │ │ ├── ic_chat_1-2.png │ │ └── ic_chat_1.png │ ├── Contents.json │ ├── Like.imageset │ │ ├── Contents.json │ │ ├── ic_like-1.png │ │ ├── ic_like-2.png │ │ └── ic_like.png │ ├── Menu.imageset │ │ ├── Contents.json │ │ ├── ic_menu-1.png │ │ └── ic_menu.png │ ├── PostImage.imageset │ │ ├── Contents.json │ │ └── placeholder.png │ ├── Share.imageset │ │ ├── Contents.json │ │ ├── ic_share_file-1.png │ │ ├── ic_share_file-2.png │ │ └── ic_share_file.png │ └── noUser.imageset │ │ ├── Contents.json │ │ └── no-user-image-square-9f6a473a32ad639f619216331d10d61ce1b35c9271d5683920960e1a5ee45bb8.jpg ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Info.plist ├── TableViewCells │ ├── Buttons │ │ ├── Buttons.h │ │ ├── Buttons.m │ │ └── Buttons.xib │ ├── DetailText │ │ ├── DetailText.h │ │ ├── DetailText.m │ │ └── DetailText.xib │ ├── PostDescription │ │ ├── PostDescription.h │ │ ├── PostDescription.m │ │ └── PostDescription.xib │ ├── PostImage │ │ ├── PostImage.h │ │ ├── PostImage.m │ │ └── PostImage.xib │ ├── SectionHeaderOfPost │ │ ├── SectionHeaderOfPost.h │ │ ├── SectionHeaderOfPost.m │ │ └── SectionHeaderOfPost.xib │ ├── SuggestedPeopleCell │ │ ├── SuggestedPeopleCell.h │ │ ├── SuggestedPeopleCell.m │ │ ├── SuggestedPeopleCell.xib │ │ ├── SuggestedPeopleCollectionViewCell.h │ │ ├── SuggestedPeopleCollectionViewCell.m │ │ └── SuggestedPeopleCollectionViewCell.xib │ ├── TotalLikes&Comments │ │ ├── TotalLikes_Comments.h │ │ ├── TotalLikes_Comments.m │ │ └── TotalLikes_Comments.xib │ └── UploadedOn │ │ ├── UploadedOn.h │ │ ├── UploadedOn.m │ │ └── UploadedOn.xib ├── ViewController.h ├── ViewController.m ├── main.m └── unnamed.png ├── License.md └── README.md /1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagarshirbhate/Instagram-Feed-View/HEAD/1.gif -------------------------------------------------------------------------------- /2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagarshirbhate/Instagram-Feed-View/HEAD/2.gif -------------------------------------------------------------------------------- /InstagramFeedView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagarshirbhate/Instagram-Feed-View/HEAD/InstagramFeedView.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /InstagramFeedView.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagarshirbhate/Instagram-Feed-View/HEAD/InstagramFeedView.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /InstagramFeedView.xcodeproj/project.xcworkspace/xcuserdata/Sagar_Shirbhate.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagarshirbhate/Instagram-Feed-View/HEAD/InstagramFeedView.xcodeproj/project.xcworkspace/xcuserdata/Sagar_Shirbhate.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /InstagramFeedView.xcodeproj/xcuserdata/Sagar_Shirbhate.xcuserdatad/xcschemes/InstagramFeedView.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagarshirbhate/Instagram-Feed-View/HEAD/InstagramFeedView.xcodeproj/xcuserdata/Sagar_Shirbhate.xcuserdatad/xcschemes/InstagramFeedView.xcscheme -------------------------------------------------------------------------------- /InstagramFeedView.xcodeproj/xcuserdata/Sagar_Shirbhate.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagarshirbhate/Instagram-Feed-View/HEAD/InstagramFeedView.xcodeproj/xcuserdata/Sagar_Shirbhate.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /InstagramFeedView/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagarshirbhate/Instagram-Feed-View/HEAD/InstagramFeedView/AppDelegate.h -------------------------------------------------------------------------------- /InstagramFeedView/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagarshirbhate/Instagram-Feed-View/HEAD/InstagramFeedView/AppDelegate.m -------------------------------------------------------------------------------- /InstagramFeedView/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagarshirbhate/Instagram-Feed-View/HEAD/InstagramFeedView/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /InstagramFeedView/Assets.xcassets/AppIcon.appiconset/unnamed-29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagarshirbhate/Instagram-Feed-View/HEAD/InstagramFeedView/Assets.xcassets/AppIcon.appiconset/unnamed-29@2x.png -------------------------------------------------------------------------------- /InstagramFeedView/Assets.xcassets/AppIcon.appiconset/unnamed-29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagarshirbhate/Instagram-Feed-View/HEAD/InstagramFeedView/Assets.xcassets/AppIcon.appiconset/unnamed-29@3x.png -------------------------------------------------------------------------------- /InstagramFeedView/Assets.xcassets/Comment.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagarshirbhate/Instagram-Feed-View/HEAD/InstagramFeedView/Assets.xcassets/Comment.imageset/Contents.json -------------------------------------------------------------------------------- /InstagramFeedView/Assets.xcassets/Comment.imageset/ic_chat_1-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagarshirbhate/Instagram-Feed-View/HEAD/InstagramFeedView/Assets.xcassets/Comment.imageset/ic_chat_1-1.png -------------------------------------------------------------------------------- /InstagramFeedView/Assets.xcassets/Comment.imageset/ic_chat_1-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagarshirbhate/Instagram-Feed-View/HEAD/InstagramFeedView/Assets.xcassets/Comment.imageset/ic_chat_1-2.png -------------------------------------------------------------------------------- /InstagramFeedView/Assets.xcassets/Comment.imageset/ic_chat_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagarshirbhate/Instagram-Feed-View/HEAD/InstagramFeedView/Assets.xcassets/Comment.imageset/ic_chat_1.png -------------------------------------------------------------------------------- /InstagramFeedView/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagarshirbhate/Instagram-Feed-View/HEAD/InstagramFeedView/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /InstagramFeedView/Assets.xcassets/Like.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagarshirbhate/Instagram-Feed-View/HEAD/InstagramFeedView/Assets.xcassets/Like.imageset/Contents.json -------------------------------------------------------------------------------- /InstagramFeedView/Assets.xcassets/Like.imageset/ic_like-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagarshirbhate/Instagram-Feed-View/HEAD/InstagramFeedView/Assets.xcassets/Like.imageset/ic_like-1.png -------------------------------------------------------------------------------- /InstagramFeedView/Assets.xcassets/Like.imageset/ic_like-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagarshirbhate/Instagram-Feed-View/HEAD/InstagramFeedView/Assets.xcassets/Like.imageset/ic_like-2.png -------------------------------------------------------------------------------- /InstagramFeedView/Assets.xcassets/Like.imageset/ic_like.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagarshirbhate/Instagram-Feed-View/HEAD/InstagramFeedView/Assets.xcassets/Like.imageset/ic_like.png -------------------------------------------------------------------------------- /InstagramFeedView/Assets.xcassets/Menu.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagarshirbhate/Instagram-Feed-View/HEAD/InstagramFeedView/Assets.xcassets/Menu.imageset/Contents.json -------------------------------------------------------------------------------- /InstagramFeedView/Assets.xcassets/Menu.imageset/ic_menu-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagarshirbhate/Instagram-Feed-View/HEAD/InstagramFeedView/Assets.xcassets/Menu.imageset/ic_menu-1.png -------------------------------------------------------------------------------- /InstagramFeedView/Assets.xcassets/Menu.imageset/ic_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagarshirbhate/Instagram-Feed-View/HEAD/InstagramFeedView/Assets.xcassets/Menu.imageset/ic_menu.png -------------------------------------------------------------------------------- /InstagramFeedView/Assets.xcassets/PostImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagarshirbhate/Instagram-Feed-View/HEAD/InstagramFeedView/Assets.xcassets/PostImage.imageset/Contents.json -------------------------------------------------------------------------------- /InstagramFeedView/Assets.xcassets/PostImage.imageset/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagarshirbhate/Instagram-Feed-View/HEAD/InstagramFeedView/Assets.xcassets/PostImage.imageset/placeholder.png -------------------------------------------------------------------------------- /InstagramFeedView/Assets.xcassets/Share.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagarshirbhate/Instagram-Feed-View/HEAD/InstagramFeedView/Assets.xcassets/Share.imageset/Contents.json -------------------------------------------------------------------------------- /InstagramFeedView/Assets.xcassets/Share.imageset/ic_share_file-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagarshirbhate/Instagram-Feed-View/HEAD/InstagramFeedView/Assets.xcassets/Share.imageset/ic_share_file-1.png -------------------------------------------------------------------------------- /InstagramFeedView/Assets.xcassets/Share.imageset/ic_share_file-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagarshirbhate/Instagram-Feed-View/HEAD/InstagramFeedView/Assets.xcassets/Share.imageset/ic_share_file-2.png -------------------------------------------------------------------------------- /InstagramFeedView/Assets.xcassets/Share.imageset/ic_share_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagarshirbhate/Instagram-Feed-View/HEAD/InstagramFeedView/Assets.xcassets/Share.imageset/ic_share_file.png -------------------------------------------------------------------------------- /InstagramFeedView/Assets.xcassets/noUser.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagarshirbhate/Instagram-Feed-View/HEAD/InstagramFeedView/Assets.xcassets/noUser.imageset/Contents.json -------------------------------------------------------------------------------- /InstagramFeedView/Assets.xcassets/noUser.imageset/no-user-image-square-9f6a473a32ad639f619216331d10d61ce1b35c9271d5683920960e1a5ee45bb8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagarshirbhate/Instagram-Feed-View/HEAD/InstagramFeedView/Assets.xcassets/noUser.imageset/no-user-image-square-9f6a473a32ad639f619216331d10d61ce1b35c9271d5683920960e1a5ee45bb8.jpg -------------------------------------------------------------------------------- /InstagramFeedView/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagarshirbhate/Instagram-Feed-View/HEAD/InstagramFeedView/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /InstagramFeedView/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagarshirbhate/Instagram-Feed-View/HEAD/InstagramFeedView/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /InstagramFeedView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagarshirbhate/Instagram-Feed-View/HEAD/InstagramFeedView/Info.plist -------------------------------------------------------------------------------- /InstagramFeedView/TableViewCells/Buttons/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagarshirbhate/Instagram-Feed-View/HEAD/InstagramFeedView/TableViewCells/Buttons/Buttons.h -------------------------------------------------------------------------------- /InstagramFeedView/TableViewCells/Buttons/Buttons.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagarshirbhate/Instagram-Feed-View/HEAD/InstagramFeedView/TableViewCells/Buttons/Buttons.m -------------------------------------------------------------------------------- /InstagramFeedView/TableViewCells/Buttons/Buttons.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagarshirbhate/Instagram-Feed-View/HEAD/InstagramFeedView/TableViewCells/Buttons/Buttons.xib -------------------------------------------------------------------------------- /InstagramFeedView/TableViewCells/DetailText/DetailText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagarshirbhate/Instagram-Feed-View/HEAD/InstagramFeedView/TableViewCells/DetailText/DetailText.h -------------------------------------------------------------------------------- /InstagramFeedView/TableViewCells/DetailText/DetailText.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagarshirbhate/Instagram-Feed-View/HEAD/InstagramFeedView/TableViewCells/DetailText/DetailText.m -------------------------------------------------------------------------------- /InstagramFeedView/TableViewCells/DetailText/DetailText.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagarshirbhate/Instagram-Feed-View/HEAD/InstagramFeedView/TableViewCells/DetailText/DetailText.xib -------------------------------------------------------------------------------- /InstagramFeedView/TableViewCells/PostDescription/PostDescription.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagarshirbhate/Instagram-Feed-View/HEAD/InstagramFeedView/TableViewCells/PostDescription/PostDescription.h -------------------------------------------------------------------------------- /InstagramFeedView/TableViewCells/PostDescription/PostDescription.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagarshirbhate/Instagram-Feed-View/HEAD/InstagramFeedView/TableViewCells/PostDescription/PostDescription.m -------------------------------------------------------------------------------- /InstagramFeedView/TableViewCells/PostDescription/PostDescription.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagarshirbhate/Instagram-Feed-View/HEAD/InstagramFeedView/TableViewCells/PostDescription/PostDescription.xib -------------------------------------------------------------------------------- /InstagramFeedView/TableViewCells/PostImage/PostImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagarshirbhate/Instagram-Feed-View/HEAD/InstagramFeedView/TableViewCells/PostImage/PostImage.h -------------------------------------------------------------------------------- /InstagramFeedView/TableViewCells/PostImage/PostImage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagarshirbhate/Instagram-Feed-View/HEAD/InstagramFeedView/TableViewCells/PostImage/PostImage.m -------------------------------------------------------------------------------- /InstagramFeedView/TableViewCells/PostImage/PostImage.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagarshirbhate/Instagram-Feed-View/HEAD/InstagramFeedView/TableViewCells/PostImage/PostImage.xib -------------------------------------------------------------------------------- /InstagramFeedView/TableViewCells/SectionHeaderOfPost/SectionHeaderOfPost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagarshirbhate/Instagram-Feed-View/HEAD/InstagramFeedView/TableViewCells/SectionHeaderOfPost/SectionHeaderOfPost.h -------------------------------------------------------------------------------- /InstagramFeedView/TableViewCells/SectionHeaderOfPost/SectionHeaderOfPost.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagarshirbhate/Instagram-Feed-View/HEAD/InstagramFeedView/TableViewCells/SectionHeaderOfPost/SectionHeaderOfPost.m -------------------------------------------------------------------------------- /InstagramFeedView/TableViewCells/SectionHeaderOfPost/SectionHeaderOfPost.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagarshirbhate/Instagram-Feed-View/HEAD/InstagramFeedView/TableViewCells/SectionHeaderOfPost/SectionHeaderOfPost.xib -------------------------------------------------------------------------------- /InstagramFeedView/TableViewCells/SuggestedPeopleCell/SuggestedPeopleCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagarshirbhate/Instagram-Feed-View/HEAD/InstagramFeedView/TableViewCells/SuggestedPeopleCell/SuggestedPeopleCell.h -------------------------------------------------------------------------------- /InstagramFeedView/TableViewCells/SuggestedPeopleCell/SuggestedPeopleCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagarshirbhate/Instagram-Feed-View/HEAD/InstagramFeedView/TableViewCells/SuggestedPeopleCell/SuggestedPeopleCell.m -------------------------------------------------------------------------------- /InstagramFeedView/TableViewCells/SuggestedPeopleCell/SuggestedPeopleCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagarshirbhate/Instagram-Feed-View/HEAD/InstagramFeedView/TableViewCells/SuggestedPeopleCell/SuggestedPeopleCell.xib -------------------------------------------------------------------------------- /InstagramFeedView/TableViewCells/SuggestedPeopleCell/SuggestedPeopleCollectionViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagarshirbhate/Instagram-Feed-View/HEAD/InstagramFeedView/TableViewCells/SuggestedPeopleCell/SuggestedPeopleCollectionViewCell.h -------------------------------------------------------------------------------- /InstagramFeedView/TableViewCells/SuggestedPeopleCell/SuggestedPeopleCollectionViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagarshirbhate/Instagram-Feed-View/HEAD/InstagramFeedView/TableViewCells/SuggestedPeopleCell/SuggestedPeopleCollectionViewCell.m -------------------------------------------------------------------------------- /InstagramFeedView/TableViewCells/SuggestedPeopleCell/SuggestedPeopleCollectionViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagarshirbhate/Instagram-Feed-View/HEAD/InstagramFeedView/TableViewCells/SuggestedPeopleCell/SuggestedPeopleCollectionViewCell.xib -------------------------------------------------------------------------------- /InstagramFeedView/TableViewCells/TotalLikes&Comments/TotalLikes_Comments.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagarshirbhate/Instagram-Feed-View/HEAD/InstagramFeedView/TableViewCells/TotalLikes&Comments/TotalLikes_Comments.h -------------------------------------------------------------------------------- /InstagramFeedView/TableViewCells/TotalLikes&Comments/TotalLikes_Comments.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagarshirbhate/Instagram-Feed-View/HEAD/InstagramFeedView/TableViewCells/TotalLikes&Comments/TotalLikes_Comments.m -------------------------------------------------------------------------------- /InstagramFeedView/TableViewCells/TotalLikes&Comments/TotalLikes_Comments.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagarshirbhate/Instagram-Feed-View/HEAD/InstagramFeedView/TableViewCells/TotalLikes&Comments/TotalLikes_Comments.xib -------------------------------------------------------------------------------- /InstagramFeedView/TableViewCells/UploadedOn/UploadedOn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagarshirbhate/Instagram-Feed-View/HEAD/InstagramFeedView/TableViewCells/UploadedOn/UploadedOn.h -------------------------------------------------------------------------------- /InstagramFeedView/TableViewCells/UploadedOn/UploadedOn.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagarshirbhate/Instagram-Feed-View/HEAD/InstagramFeedView/TableViewCells/UploadedOn/UploadedOn.m -------------------------------------------------------------------------------- /InstagramFeedView/TableViewCells/UploadedOn/UploadedOn.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagarshirbhate/Instagram-Feed-View/HEAD/InstagramFeedView/TableViewCells/UploadedOn/UploadedOn.xib -------------------------------------------------------------------------------- /InstagramFeedView/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagarshirbhate/Instagram-Feed-View/HEAD/InstagramFeedView/ViewController.h -------------------------------------------------------------------------------- /InstagramFeedView/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagarshirbhate/Instagram-Feed-View/HEAD/InstagramFeedView/ViewController.m -------------------------------------------------------------------------------- /InstagramFeedView/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagarshirbhate/Instagram-Feed-View/HEAD/InstagramFeedView/main.m -------------------------------------------------------------------------------- /InstagramFeedView/unnamed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagarshirbhate/Instagram-Feed-View/HEAD/InstagramFeedView/unnamed.png -------------------------------------------------------------------------------- /License.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagarshirbhate/Instagram-Feed-View/HEAD/License.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sagarshirbhate/Instagram-Feed-View/HEAD/README.md --------------------------------------------------------------------------------