如何在点击按钮上获得UITableviewcell值?

时间:2016-01-13 15:23:08

标签: ios database sqlite

我想点击更新按钮获取UITableviewCell值。当用户按下更新按钮时,我想获取第一个单元格(名称)和第二个单元格(油费)值。请帮帮我。

1 个答案:

答案 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;