我。我已经尝试了很多,但无法成功执行。 II。在tableview单元格中,需要显示3个3个字段。一个图像视图,button1 - >拍摄照片按钮,按钮2 --->浏览按钮。 III。第一次tableview应显示一行的自定义单元格。 IV。当用户点击"添加新按钮" ,在tableview之外放置一个新行将创建所有3个以上的字段(图像视图,button1,button2) v。点击次数"添加新按钮" ,将创建包含所有3个以上字段的新行。 六。我可以使用包含上述3个字段但无法成功处理自定义单元格的简单图像视图,成功动态创建所有上述内容。
七。我需要再次设置每个单元格的标签,broswe按钮,拍照按钮,这样当点击时,将采用标签值。
答案 0 :(得分:2)
表视图的工作原理是添加委托和数据源。假设您的表视图具有所有者作为视图控制器,并且委托和数据源都是视图控制器本身。您需要做的就是实现这些数据源方法以返回适当的数据然后您应该在表视图上调用reloadData
,或者如果您想要一些额外的工作来查看更好的检查如何在Web上添加动画的行
这是一个非常简单且未经优化的示例,但非常简短且易于阅读。我希望它能帮助你走上正轨:
@interface MyViewController()<UITableViewDataSource, UITableViewDelegate>
@property UITableView *tableView;
@property NSArray *myCells;
@end
@implementation MyViewController
- (void)viewDidLoad {
[super viewDidLoad];
self.tableView.delegate = self; // could be done in storyboard
self.tableView.dataSource = self; // could be done in storyboard
[self addACell];
}
- (void)addCellButtonPressed:(id)sender {
[self addACell];
}
- (void)addACell {
MyCell *cell = [[MyCell alloc] init];
[cell.button1 addTarget:self action:@selector(cellButton1Pressed:) forControlEvents:UIControlEventTouchUpInside];
[cell.button2 addTarget:self action:@selector(cellButton2Pressed:) forControlEvents:UIControlEventTouchUpInside];
self.myCells = [self.myCells arrayByAddingObject:cell];
[self.tableView reloadData]; // will call the delegate again and refresh cells
}
- (void)cellButton1Pressed:(id)sender {
MyCell *cellPressed = nil;
for(MyCell *cell in self.myCells) {
if(cell.button1 == sender) {
cellPressed = cell;
break;
}
}
// do whatever
}
- (void)cellButton2Pressed:(id)sender {
MyCell *cellPressed = nil;
for(MyCell *cell in self.myCells) {
if(cell.button2 == sender) {
cellPressed = cell;
break;
}
}
// do whatever
}
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
return 1;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
return self.myCells.count;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
return self.myCells[indexPath.row];
}
@end