我正在开发一个应用程序,它使用 UITableViews 和自定义的、编程的 UI 更改。例如,我有一些编程 UITableViewCell 更改:
...
cell.backgroundColor = [UIColor clearColor];
cell.textLabel.font = [UIFont fontWithName:@"Georgia" size:14];
cell.selectedBackgroundView = anImageView;
...
和这样的 UITableView 设置:
self.table.separatorColor = [UIColor darkGrayColor];
我如何将 UITableView 和 UITableViewCell 的子类创建到每当我创建新表时,它将继承这些属性?我在每个表中都有所有这些属性(大约有 3-4 个),并且希望减少不必要的代码混乱。