我想点击更新按钮获取UITableviewCell值。当用户按下更新按钮时,我想获取第一个单元格(名称)和第二个单元格(油费)值。请帮帮我。
答案 0 :(得分:0)
:( 试试以下代码,
NSIndexPath *indexPath = [NSIndexPath indexPathForRow: 0 inSection: 0];
UITableViewCell *cell1 = [self.tableview cellForRowAtIndexPath:indexPath];
NSString* name = cell1.textLabel.text;
NSIndexPath *indexPath = [NSIndexPath indexPathForRow: 1 inSection: 0];
UITableViewCell *cell2 = [self.tableview cellForRowAtIndexPath:indexPath];
NSString* oilcost = cell2.textLabel.text;