Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在用
UIColor *color = [UIColor colorWithPatternImage:[UIImage imageNamed:@"seprator.png"]]; [self.tableView setSeparatorColor:color];
这在模拟器上运行良好,但图像未显示在设备上。
尝试
[self.tableView setBackgroudView:nil];
然后
[theTableView.setSeparatorStyle:UITableViewCellSeparatorStyleSingleLine];
希望这可以帮助...
清理设备中的项目 command+shift+K(在 XCode 中选择设备),然后再次运行项目,以便映像将复制到设备中正在运行的构建中。