├── CircleView.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ ├── bharathbooshan.xcuserdatad │ │ └── UserInterfaceState.xcuserstate │ │ └── macbook.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ ├── bharathbooshan.xcuserdatad │ ├── xcdebugger │ │ └── Breakpoints.xcbkptlist │ └── xcschemes │ │ ├── CircleView.xcscheme │ │ └── xcschememanagement.plist │ └── macbook.xcuserdatad │ ├── xcdebugger │ └── Breakpoints.xcbkptlist │ └── xcschemes │ ├── CircleView.xcscheme │ └── xcschememanagement.plist ├── CircleView ├── BBAppDelegate.h ├── BBAppDelegate.m ├── BBTableView │ ├── BBCell │ │ ├── BBCell.h │ │ └── BBCell.m │ ├── BBTableView.h │ ├── BBTableView.m │ ├── BBTableView1.m │ └── Interceptor │ │ ├── BBTableViewInterceptor.h │ │ └── BBTableViewInterceptor.m ├── CircleView-Info.plist ├── CircleView-Prefix.pch ├── Default-568h@2x.png ├── Default.png ├── Default@2x.png ├── DemoViewController │ ├── BBViewController.h │ └── BBViewController.m ├── en.lproj │ └── InfoPlist.strings └── main.m ├── Default-568h@2x.png ├── License.txt ├── Profiles └── profile.mobileprovision ├── README.md ├── Resources ├── Common │ ├── Plist │ │ └── data.plist │ └── images │ │ ├── 1.png │ │ ├── 10.png │ │ ├── 11.png │ │ ├── 12.png │ │ ├── 13.png │ │ ├── 14.png │ │ ├── 15.png │ │ ├── 16.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── 6.png │ │ ├── 7.png │ │ ├── 8.png │ │ └── 9.png ├── Resources-iPad │ └── DemoviewController │ │ └── en.lproj │ │ └── BBViewController_iPad.xib └── Resources-iPhone │ └── DemoViewController │ └── en.lproj │ └── BBViewController_iPhone.xib └── sample_screen.png /CircleView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharath2020/UITableViewTricks/HEAD/CircleView.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /CircleView.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharath2020/UITableViewTricks/HEAD/CircleView.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /CircleView.xcodeproj/project.xcworkspace/xcuserdata/bharathbooshan.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharath2020/UITableViewTricks/HEAD/CircleView.xcodeproj/project.xcworkspace/xcuserdata/bharathbooshan.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /CircleView.xcodeproj/project.xcworkspace/xcuserdata/macbook.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharath2020/UITableViewTricks/HEAD/CircleView.xcodeproj/project.xcworkspace/xcuserdata/macbook.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /CircleView.xcodeproj/xcuserdata/bharathbooshan.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharath2020/UITableViewTricks/HEAD/CircleView.xcodeproj/xcuserdata/bharathbooshan.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist -------------------------------------------------------------------------------- /CircleView.xcodeproj/xcuserdata/bharathbooshan.xcuserdatad/xcschemes/CircleView.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharath2020/UITableViewTricks/HEAD/CircleView.xcodeproj/xcuserdata/bharathbooshan.xcuserdatad/xcschemes/CircleView.xcscheme -------------------------------------------------------------------------------- /CircleView.xcodeproj/xcuserdata/bharathbooshan.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharath2020/UITableViewTricks/HEAD/CircleView.xcodeproj/xcuserdata/bharathbooshan.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /CircleView.xcodeproj/xcuserdata/macbook.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharath2020/UITableViewTricks/HEAD/CircleView.xcodeproj/xcuserdata/macbook.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist -------------------------------------------------------------------------------- /CircleView.xcodeproj/xcuserdata/macbook.xcuserdatad/xcschemes/CircleView.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharath2020/UITableViewTricks/HEAD/CircleView.xcodeproj/xcuserdata/macbook.xcuserdatad/xcschemes/CircleView.xcscheme -------------------------------------------------------------------------------- /CircleView.xcodeproj/xcuserdata/macbook.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharath2020/UITableViewTricks/HEAD/CircleView.xcodeproj/xcuserdata/macbook.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /CircleView/BBAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharath2020/UITableViewTricks/HEAD/CircleView/BBAppDelegate.h -------------------------------------------------------------------------------- /CircleView/BBAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharath2020/UITableViewTricks/HEAD/CircleView/BBAppDelegate.m -------------------------------------------------------------------------------- /CircleView/BBTableView/BBCell/BBCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharath2020/UITableViewTricks/HEAD/CircleView/BBTableView/BBCell/BBCell.h -------------------------------------------------------------------------------- /CircleView/BBTableView/BBCell/BBCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharath2020/UITableViewTricks/HEAD/CircleView/BBTableView/BBCell/BBCell.m -------------------------------------------------------------------------------- /CircleView/BBTableView/BBTableView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharath2020/UITableViewTricks/HEAD/CircleView/BBTableView/BBTableView.h -------------------------------------------------------------------------------- /CircleView/BBTableView/BBTableView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharath2020/UITableViewTricks/HEAD/CircleView/BBTableView/BBTableView.m -------------------------------------------------------------------------------- /CircleView/BBTableView/BBTableView1.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharath2020/UITableViewTricks/HEAD/CircleView/BBTableView/BBTableView1.m -------------------------------------------------------------------------------- /CircleView/BBTableView/Interceptor/BBTableViewInterceptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharath2020/UITableViewTricks/HEAD/CircleView/BBTableView/Interceptor/BBTableViewInterceptor.h -------------------------------------------------------------------------------- /CircleView/BBTableView/Interceptor/BBTableViewInterceptor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharath2020/UITableViewTricks/HEAD/CircleView/BBTableView/Interceptor/BBTableViewInterceptor.m -------------------------------------------------------------------------------- /CircleView/CircleView-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharath2020/UITableViewTricks/HEAD/CircleView/CircleView-Info.plist -------------------------------------------------------------------------------- /CircleView/CircleView-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharath2020/UITableViewTricks/HEAD/CircleView/CircleView-Prefix.pch -------------------------------------------------------------------------------- /CircleView/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharath2020/UITableViewTricks/HEAD/CircleView/Default-568h@2x.png -------------------------------------------------------------------------------- /CircleView/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharath2020/UITableViewTricks/HEAD/CircleView/Default.png -------------------------------------------------------------------------------- /CircleView/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharath2020/UITableViewTricks/HEAD/CircleView/Default@2x.png -------------------------------------------------------------------------------- /CircleView/DemoViewController/BBViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharath2020/UITableViewTricks/HEAD/CircleView/DemoViewController/BBViewController.h -------------------------------------------------------------------------------- /CircleView/DemoViewController/BBViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharath2020/UITableViewTricks/HEAD/CircleView/DemoViewController/BBViewController.m -------------------------------------------------------------------------------- /CircleView/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /CircleView/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharath2020/UITableViewTricks/HEAD/CircleView/main.m -------------------------------------------------------------------------------- /Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharath2020/UITableViewTricks/HEAD/Default-568h@2x.png -------------------------------------------------------------------------------- /License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharath2020/UITableViewTricks/HEAD/License.txt -------------------------------------------------------------------------------- /Profiles/profile.mobileprovision: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharath2020/UITableViewTricks/HEAD/Profiles/profile.mobileprovision -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharath2020/UITableViewTricks/HEAD/README.md -------------------------------------------------------------------------------- /Resources/Common/Plist/data.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharath2020/UITableViewTricks/HEAD/Resources/Common/Plist/data.plist -------------------------------------------------------------------------------- /Resources/Common/images/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharath2020/UITableViewTricks/HEAD/Resources/Common/images/1.png -------------------------------------------------------------------------------- /Resources/Common/images/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharath2020/UITableViewTricks/HEAD/Resources/Common/images/10.png -------------------------------------------------------------------------------- /Resources/Common/images/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharath2020/UITableViewTricks/HEAD/Resources/Common/images/11.png -------------------------------------------------------------------------------- /Resources/Common/images/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharath2020/UITableViewTricks/HEAD/Resources/Common/images/12.png -------------------------------------------------------------------------------- /Resources/Common/images/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharath2020/UITableViewTricks/HEAD/Resources/Common/images/13.png -------------------------------------------------------------------------------- /Resources/Common/images/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharath2020/UITableViewTricks/HEAD/Resources/Common/images/14.png -------------------------------------------------------------------------------- /Resources/Common/images/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharath2020/UITableViewTricks/HEAD/Resources/Common/images/15.png -------------------------------------------------------------------------------- /Resources/Common/images/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharath2020/UITableViewTricks/HEAD/Resources/Common/images/16.png -------------------------------------------------------------------------------- /Resources/Common/images/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharath2020/UITableViewTricks/HEAD/Resources/Common/images/2.png -------------------------------------------------------------------------------- /Resources/Common/images/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharath2020/UITableViewTricks/HEAD/Resources/Common/images/3.png -------------------------------------------------------------------------------- /Resources/Common/images/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharath2020/UITableViewTricks/HEAD/Resources/Common/images/4.png -------------------------------------------------------------------------------- /Resources/Common/images/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharath2020/UITableViewTricks/HEAD/Resources/Common/images/5.png -------------------------------------------------------------------------------- /Resources/Common/images/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharath2020/UITableViewTricks/HEAD/Resources/Common/images/6.png -------------------------------------------------------------------------------- /Resources/Common/images/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharath2020/UITableViewTricks/HEAD/Resources/Common/images/7.png -------------------------------------------------------------------------------- /Resources/Common/images/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharath2020/UITableViewTricks/HEAD/Resources/Common/images/8.png -------------------------------------------------------------------------------- /Resources/Common/images/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharath2020/UITableViewTricks/HEAD/Resources/Common/images/9.png -------------------------------------------------------------------------------- /Resources/Resources-iPad/DemoviewController/en.lproj/BBViewController_iPad.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharath2020/UITableViewTricks/HEAD/Resources/Resources-iPad/DemoviewController/en.lproj/BBViewController_iPad.xib -------------------------------------------------------------------------------- /Resources/Resources-iPhone/DemoViewController/en.lproj/BBViewController_iPhone.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharath2020/UITableViewTricks/HEAD/Resources/Resources-iPhone/DemoViewController/en.lproj/BBViewController_iPhone.xib -------------------------------------------------------------------------------- /sample_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bharath2020/UITableViewTricks/HEAD/sample_screen.png --------------------------------------------------------------------------------