氨患野揪?有干貨昵观?
1.導航條返回鍵帶的title太討厭了,怎么讓它消失!
[[UIBarButtonItem?appearance]?setBackButtonTitlePositionAdjustment:UIOffsetMake(0,?-60)
forBarMetrics:UIBarMetricsDefault];
2.怎么在不新建一個Cell的情況下調整separaLine的位置?
_myTableView.separatorInset?=?UIEdgeInsetsMake(0,?100,?0,?0);
3.ScrollView莫名其妙不能在viewController劃到頂怎么辦?
self.automaticallyAdjustsScrollViewInsets?=?NO;
4.TableView不顯示沒內(nèi)容的Cell怎么辦?
self.tableView.tableFooterView = [[UIView alloc] init];
(或者:self.tableView.tableFooterView = [UIView new])
5.怎么把tableview里cell的小對勾的顏色改成別的顏色绸罗?
_mTableView.tintColor?=?[UIColor?redColor];(其他顏色請自己設置)
6.怎么改變uitextfield placeholder的顏色和位置?
繼承uitextfield驶兜,重寫這個方法
-?(void)?drawPlaceholderInRect:(CGRect)rect?{
[[UIColor?blueColor]?setFill];
[self.placeholder?drawInRect:rect?withFont:self.font?lineBreakMode:UILineBreakModeTailTruncation?alignment:self.textAlignment];
}
去stackoverflow刷問題啊,少年远寸!