配列内のオブジェクトへのアクセスに問題があります。「Place」オブジェクトをNSMutableArrayに保存します。TableViewのこの配列にアクセスしたいと思います。1行目に「セレクターの既知のインスタンスメソッドがありません」というエラーが表示されます。以下の行を参照してください。
cell.imageView = [[self.currentPlaces objectAtIndex:indexPath.row]picture];
cell.subtitleLB.text = [[self.currentPlaces objectAtIndex:indexPath.row]description];
cell.objectNameLB.text = [[self.currentPlaces objectAtIndex:indexPath.row]name];
これは私のPlaceオブジェクトです:
@interface Place : NSObject{
CLLocation *objectLocation;
UIImageView *picture;
NSString *name;
NSString *description;
}
プロパティ「description」と「name」へのアクセスは問題ありません。このエラーが発生する理由がわかりません。
どうも。ドミニク