したがって、に基づいている私のアプリでは、次のようなメソッドの行をUITableViews
取得しています。indexPath
didSelectRowAtIndexPath:
- (void)tableView:(UITableView *)tableView
didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
NSUInteger row = [indexPath row];
// Extract Data
CTCoreMessage *message = [[self allMessages] objectAtIndex:row];
}
indexPath
私の質問は、で受け取りたい場合はどうすればよいIBAction
ですか? NSIndexPath
メソッドのヘッダーに宣言がないので、どうすればいいですか?
ありがとう!