我需要自定义 UITableView 的分隔线,为此我必须访问方法 cellForRowAtIndexPath 中的资源(png 文件),如下所示:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
// Some code here
myCustomSeparator.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"separator.png"]];
// Code ...
}
问题是我听说在这种方法中访问资源不是一个好习惯。是真的吗?