我在Objective C中有这个代码,并且想知道你是否可以将它翻译成新的swift Xcode ......继承代码。
(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];
NSString *cellText = cell.textLabel.text;
}
答案 0 :(得分:-2)
这应该是正确的:
func tableView(tableView: UITableView, indexPath: NSIndexPath) {
let cell = tableView.cellForRowAtIndexPath(indexPath);
let cellText = cell.textLabel.text;
}