iOS开发的一些技巧

来源:互联网 发布:延安广电网络商务宾馆 编辑:程序博客网 时间:2024/05/17 09:32

TableView不显示没内容的Cell怎么办?

self.tableView.tableFooterView = [[UIView alloc] init];

ScrollView莫名其妙不能在viewController划到顶怎么办?

self.automaticallyAdjustsScrollViewInsets = NO;

怎么点击self.view就让键盘收起,需要添加一个tapGestures么?(这个太绝了,以前写手势累的半死)

- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event{   [self.view endEditing:YES];}





0 0
原创粉丝点击