我想创建一个原型单元格,可以通过故事板在不同的表格视图中使用..这样做的正确方法是什么?任何指针赞赏。
答案 0 :(得分:9)
我认为您不能创建原型单元并在故事板中的表之间共享它,但您可以在nib中创建原型单元,然后在ViewDidLoad方法中加载它,然后在表视图中使用它。这真的很简单,这里是如何......
一个。添加nib文件:
1.选择新文件...
2.选择IOS - >用户界面
3.选择“清空” - >这将为您的项目添加一个新的.xib文件
4.将UITableViewCell从对象浏览器拖到xib文件中,并根据自己的喜好进行自定义
5.使用“实用工具”窗格更改属性 - >编辑笔尖是非常的
类似于编辑故事板
6.确保为单元命名 - 我选择了名称cellFromNib,但您可能还需要其他东西。
B中。在每个表的viewDidLoad方法中加载UITableViewCell:
- (void)viewDidLoad
{
// load the cell in the nib - the nib can only contain this one UITableViewCell
[self.tableView
registerNib:[UINib nibWithNibName:[self @"nibFileNameWithoutExtension"]
bundle:[NSBundle mainBundle]]
forCellReuseIdentifier:[self @"cellFromNib"]];
}
℃。将nib的tableViewCell排队......
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"cellFromNib" forIndexPath:indexPath];
// customize your cell here...
}
d。在故事板中为“TableView”添加“虚拟”原型单元格。 在选择单元格时,将这个“虚拟”单元格中的segue设置为要显示的视图 - 确保命名segue - 我将其称为@“theSegue”。您将在代码中引用此segue。
电子。最后,添加代码以从该单元格中删除......
-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
// this is basically what the storyboard does under the hood...
// make sure you have a "dummy" prototype cell with this segue name for each
// tableview that uses this cell
[self performSegueWithIdentifier:@"theSegue" sender:self];
}
如果要专门化单元代码,请创建一个子类UITableViewCell
的类我认为这就是你需要的一切。
我想说不要害怕做这样的事情,因为如果你认真对待IOS编程,你会学到新东西。它确实可以提供更好的可重用代码。