- 自訂UITableViewCell的選取顏色
- 關閉UIWebView的scroll功能
- 移除 UISearchBar背景色
- UIColor自訂顏色注意事項
- 取得iPad, iPhone解析度
- 自訂UISegmentControl背景色
1.Custom UITableViewCell selected color
UIView *selectBgv=[[UIView alloc]init];
selectBgv.backgroundColor=[UIColor lightGrayColor];
cell.selectedBackgroundView=selectBgv;
[selectBgv release];
要注意的是,UITableViewStylePlain下cell.selectedBackgroundView是NIL,要自己alloc,UITableViewStyleGrouped則不用
2.Disable UIWebView scroll
[[[WebView subviews] lastObject] setScrollingEnabled:NO];
3.Remove UISearchBar background
[[searchbar.subviews objectAtIndex:0]removeFromSuperview];