IOS開發經常使用知識點

  1. 添加背景色code

    在viewDidLoad方法中添加:it

    self.view.backgroundColor = [UIColor yellowColor];

    自定義顏色:table

     

self.view.backgroundColor = [UIColor colorWithRed:240/255.0 green:240/255.0 blue:240/255.0 alpha:1];方法

1. 去掉UITableView中多餘的橫線

    在viewDidLoad方法中添加:
    ```
self.tableView.tableFooterView = [UIView new];
  1. 讓UITableView橫線從最左側開始繪製tab

    在viewDidLoad方法中添加:view

    self.tableView.separatorInset = UIEdgeInsetsMake(0,2, 0, 2);//設置端距,這裏表示左右距離爲2
相關文章
相關標籤/搜索