テキスト フィールドを使用して数値を入力し、フィールドに入力された数値でタグ付けされた画像を Parse サーバーに検索させようとしていますが、ビルドしようとすると (サブジェクト ヘッダーで) この大きな赤いエラーが発生します。テスト用アプリ。これが私のコードです:
-(IBAction)Submit:(id)sender {
PFFile *people = TicketNumberBox.text[@"ticketNumber"];
[people getDataInBackgroundWithBlock:^(NSData *imageData, NSError *error) {
if (!error) {
UIImageView TicketImage = [UIImage imageWithData:imageData];
}
}];
}
さらに役立つ画像を次に示します。