- 所在界面的navigationbar,tableview 会下移64px的解决方法
self.automaticallyAdjustsScrollViewInsets = NO;
(有时间的时候总结一下下面四句代码的区别)
self.automaticallyAdjustsScrollViewInsets = NO;
self.navigationController.automaticallyAdjustsScrollViewInsets = NO;
self.tabBarController.tabBar.translucent = NO;
self.navigationController.navigationBar.translucent = NO;
- cell重用时出现的问题(cell里面设置的单选框会重用)
网友评论