摘要:
在 IOS 开发当中经常碰到 whose view is not in the window hierarchy 的错误,该错误简单的说,是由于 "ViewController" 还没有被加载,就调用该 ViewController 或者 ViewController 内的方法时,就会报这个错误。在... 阅读全文
摘要:
1、去除UITableView空白的多余的分割线self.myTableview.tableFooterView = [[UIView alloc] initWithFrame:CGRectZero]; 2、设置分割线的位置方法一:在willDisplayCell上增加如下代码- (void)ta... 阅读全文