Swift中的UITableViewCell?

时间:2014-09-15 20:40:37

标签: xcode swift

我在Objective C中有这个代码,并且想知道你是否可以将它翻译成新的swift Xcode ......继承代码。

  (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];
NSString *cellText = cell.textLabel.text;
 }

1 个答案:

答案 0 :(得分:-2)

这应该是正确的:

func tableView(tableView: UITableView, indexPath: NSIndexPath) {
   let cell = tableView.cellForRowAtIndexPath(indexPath);
   let cellText = cell.textLabel.text;
 }