私はiOS開発を始めています.私はこのコードを持っています:
まず、listOfItems NSMutableArray を宣言します。
@interface SAMasterViewController () {
NSMutableArray *listOfItems;
}
@end
そして今、これが「EXC_BAD_ACCESS(コード= 1、アドレス= 0x5fc260000)」エラーを与えるコードの一部です。エラーは、「individual_data」オブジェクトの最後の行に表示されます。
listOfItems = [[NSMutableArray alloc] init];
for(NSDictionary *tweetDict in statuses) {
NSString *text = [tweetDict objectForKey:@"text"];
NSString *screenName = [[tweetDict objectForKey:@"user"] objectForKey:@"screen_name"];
NSString *img_url = [[tweetDict objectForKey:@"user"] objectForKey:@"profile_image_url"];
NSInteger unique_id = [[tweetDict objectForKey:@"id"] intValue];
NSInteger user_id = [[[tweetDict objectForKey:@"user"] objectForKey:@"id"] intValue ];
NSMutableDictionary *individual_data = [NSMutableDictionary dictionaryWithObjectsAndKeys:
text, @"text_tweet",
screenName,@"user_name",
img_url, @"img_url",
unique_id, @"unique_id",
user_id, @"user_id", nil];
[listOfItems addObject:individual_data];
}
前もって感謝します。