├── .gitignore ├── LICENSE ├── MSCMoreOptionTableViewCell.png ├── MSCMoreOptionTableViewCell.podspec ├── MSCMoreOptionTableViewCell.xcodeproj └── project.pbxproj ├── MSCMoreOptionTableViewCell ├── MSCMoreOptionTableViewCell-Prefix.pch ├── MSCMoreOptionTableViewCell.h ├── MSCMoreOptionTableViewCell.m └── MSCMoreOptionTableViewCellDelegate.h ├── MSCMoreOptionTableViewCellDemo ├── App │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Info.plist │ ├── Prefix.pch │ ├── Sources │ │ ├── StandardTableViewCellController.h │ │ ├── StandardTableViewCellController.m │ │ ├── StoryboardTableViewCellController.h │ │ └── StoryboardTableViewCellController.m │ ├── Storyboard.storyboard │ └── main.m ├── MSCMoreOptionTableViewCellDemo.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── MSCMoreOptionTableViewCellDemo.xcscheme └── Resources │ ├── Default-568h@2x.png │ └── Trash.png └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinem/MSCMoreOptionTableViewCell/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinem/MSCMoreOptionTableViewCell/HEAD/LICENSE -------------------------------------------------------------------------------- /MSCMoreOptionTableViewCell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinem/MSCMoreOptionTableViewCell/HEAD/MSCMoreOptionTableViewCell.png -------------------------------------------------------------------------------- /MSCMoreOptionTableViewCell.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinem/MSCMoreOptionTableViewCell/HEAD/MSCMoreOptionTableViewCell.podspec -------------------------------------------------------------------------------- /MSCMoreOptionTableViewCell.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinem/MSCMoreOptionTableViewCell/HEAD/MSCMoreOptionTableViewCell.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /MSCMoreOptionTableViewCell/MSCMoreOptionTableViewCell-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinem/MSCMoreOptionTableViewCell/HEAD/MSCMoreOptionTableViewCell/MSCMoreOptionTableViewCell-Prefix.pch -------------------------------------------------------------------------------- /MSCMoreOptionTableViewCell/MSCMoreOptionTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinem/MSCMoreOptionTableViewCell/HEAD/MSCMoreOptionTableViewCell/MSCMoreOptionTableViewCell.h -------------------------------------------------------------------------------- /MSCMoreOptionTableViewCell/MSCMoreOptionTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinem/MSCMoreOptionTableViewCell/HEAD/MSCMoreOptionTableViewCell/MSCMoreOptionTableViewCell.m -------------------------------------------------------------------------------- /MSCMoreOptionTableViewCell/MSCMoreOptionTableViewCellDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinem/MSCMoreOptionTableViewCell/HEAD/MSCMoreOptionTableViewCell/MSCMoreOptionTableViewCellDelegate.h -------------------------------------------------------------------------------- /MSCMoreOptionTableViewCellDemo/App/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinem/MSCMoreOptionTableViewCell/HEAD/MSCMoreOptionTableViewCellDemo/App/AppDelegate.h -------------------------------------------------------------------------------- /MSCMoreOptionTableViewCellDemo/App/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinem/MSCMoreOptionTableViewCell/HEAD/MSCMoreOptionTableViewCellDemo/App/AppDelegate.m -------------------------------------------------------------------------------- /MSCMoreOptionTableViewCellDemo/App/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinem/MSCMoreOptionTableViewCell/HEAD/MSCMoreOptionTableViewCellDemo/App/Info.plist -------------------------------------------------------------------------------- /MSCMoreOptionTableViewCellDemo/App/Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinem/MSCMoreOptionTableViewCell/HEAD/MSCMoreOptionTableViewCellDemo/App/Prefix.pch -------------------------------------------------------------------------------- /MSCMoreOptionTableViewCellDemo/App/Sources/StandardTableViewCellController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinem/MSCMoreOptionTableViewCell/HEAD/MSCMoreOptionTableViewCellDemo/App/Sources/StandardTableViewCellController.h -------------------------------------------------------------------------------- /MSCMoreOptionTableViewCellDemo/App/Sources/StandardTableViewCellController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinem/MSCMoreOptionTableViewCell/HEAD/MSCMoreOptionTableViewCellDemo/App/Sources/StandardTableViewCellController.m -------------------------------------------------------------------------------- /MSCMoreOptionTableViewCellDemo/App/Sources/StoryboardTableViewCellController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinem/MSCMoreOptionTableViewCell/HEAD/MSCMoreOptionTableViewCellDemo/App/Sources/StoryboardTableViewCellController.h -------------------------------------------------------------------------------- /MSCMoreOptionTableViewCellDemo/App/Sources/StoryboardTableViewCellController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinem/MSCMoreOptionTableViewCell/HEAD/MSCMoreOptionTableViewCellDemo/App/Sources/StoryboardTableViewCellController.m -------------------------------------------------------------------------------- /MSCMoreOptionTableViewCellDemo/App/Storyboard.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinem/MSCMoreOptionTableViewCell/HEAD/MSCMoreOptionTableViewCellDemo/App/Storyboard.storyboard -------------------------------------------------------------------------------- /MSCMoreOptionTableViewCellDemo/App/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinem/MSCMoreOptionTableViewCell/HEAD/MSCMoreOptionTableViewCellDemo/App/main.m -------------------------------------------------------------------------------- /MSCMoreOptionTableViewCellDemo/MSCMoreOptionTableViewCellDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinem/MSCMoreOptionTableViewCell/HEAD/MSCMoreOptionTableViewCellDemo/MSCMoreOptionTableViewCellDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /MSCMoreOptionTableViewCellDemo/MSCMoreOptionTableViewCellDemo.xcodeproj/xcshareddata/xcschemes/MSCMoreOptionTableViewCellDemo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinem/MSCMoreOptionTableViewCell/HEAD/MSCMoreOptionTableViewCellDemo/MSCMoreOptionTableViewCellDemo.xcodeproj/xcshareddata/xcschemes/MSCMoreOptionTableViewCellDemo.xcscheme -------------------------------------------------------------------------------- /MSCMoreOptionTableViewCellDemo/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinem/MSCMoreOptionTableViewCell/HEAD/MSCMoreOptionTableViewCellDemo/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /MSCMoreOptionTableViewCellDemo/Resources/Trash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinem/MSCMoreOptionTableViewCell/HEAD/MSCMoreOptionTableViewCellDemo/Resources/Trash.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scheinem/MSCMoreOptionTableViewCell/HEAD/README.md --------------------------------------------------------------------------------