美文网首页
ios开发小技巧

ios开发小技巧

作者: 学习ios的颜小强 | 来源:发表于2016-08-16 09:14 被阅读0次

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

self.automaticallyAdjustsScrollViewInsets = NO;

键盘事件写的好烦躁,都想摔键盘了,怎么办?

买个结实的键盘.

使用IQKeyboardManager(github上可搜索),用完之后腰也不疼了,腿也不酸了.

为什么我的app老是不流畅,到底哪里出了问题?

这个神器叫做:KMCGeigerCounter

怎么在不新建一个Cell的情况下调整separaLine的位置?

_myTableView.separatorInset = UIEdgeInsetsMake(0, 100, 0,

0);

怎么点击self.view就让键盘收起,需要添加一个tapGestures么?

- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event

{

[self.view endEditing:YES];

}

怎么像safari一样滑动的时候隐藏navigationbar?

navigationController.hidesBarsOnSwipe = Yes

CollectionView 怎么实现tableview那种悬停的header?

CSStickyHeaderFlowLayout

相关文章

网友评论

      本文标题:ios开发小技巧

      本文链接:https://www.haomeiwen.com/subject/gihpsttx.html