-2
"チーム"という配列と "teamType"というクラスのすべてのアイテムがあります。目的C - 配列からのオブジェクトのインデックス
-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
teamType *te = [[teamType alloc]init];
//here I want to check te's index depending on the indexpath
[[NSUserDefaults standardUserDefaults]setObject:[te Name] forKey:@"buttonSelected"];
}
チーム[indexPath.row] – hariszaman
'int型のインデックス= [チームindexOfObject::objTeamType]私の方法では、私は、 "チーム" の配列から、インデックス "teamType" のオブジェクトのインデックスを確認したいです; ' – Chandan
@ ChandanPrajapatiそれが機能するには、クラスは少なくとも1つのメソッドを実装する必要がありますか?しかし、私は彼が 'teamType * te = teams [indexPath.row];を望んでいると思う。 – Droppy