You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
940 B
17 lines
940 B
4 years ago
|
[[HRNewsService sharedInstance] fetchBreakingNewsItemWithId: self.breakingNewsId
|
||
|
success:^(id responseObject) {
|
||
|
NSDictionary *thing;
|
||
|
for (NSArray *dictionary in photos)
|
||
|
{
|
||
|
}
|
||
|
}
|
||
|
failure:^(NSError *error) {
|
||
|
// Failure?
|
||
|
}];
|
||
|
|
||
|
// We also need to consider cases where a non-pointer type (or, a pointer without the star) is declared in ObjC.
|
||
|
for (id obj in someDictionary)
|
||
|
{
|
||
|
NSLog(@"This could be anything! Objective-C really needs parametrized collections.");
|
||
|
}
|