ScrollView莫名其妙不能在viewController劃到頂怎么辦?
self.automaticallyAdjustsScrollViewInsets = NO;
鍵盤事件寫的好煩躁,都想摔鍵盤了,怎么辦?
買個(gè)結(jié)實(shí)的鍵盤.
使用IQKeyboardManager(github上可搜索),用完之后腰也不疼了,腿也不酸了.
為什么我的app老是不流暢,到底哪里出了問題?
這個(gè)神器叫做:KMCGeigerCounter
怎么在不新建一個(gè)Cell的情況下調(diào)整separaLine的位置?
_myTableView.separatorInset = UIEdgeInsetsMake(0, 100, 0,
0);
怎么點(diǎn)擊self.view就讓鍵盤收起,需要添加一個(gè)tapGestures么?
- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
{
[self.view endEditing:YES];
}
怎么像safari一樣滑動(dòng)的時(shí)候隱藏navigationbar?
navigationController.hidesBarsOnSwipe = Yes
CollectionView 怎么實(shí)現(xiàn)tableview那種懸停的header?
CSStickyHeaderFlowLayout