Chinese Rule of Eight

Skip to content

Fast Enumeration

September 7, 2015C/C++/Objective-Cadmin

1
2
3
for(BBT * bbtTimeTemp in arrayOfBBTs) {
 
}

1
2
3
for(NSString *aString in array) {
      NSLog(@"Value: %@",aString);
}

Post navigation

← Retain Cycle in iOS calling method on a nil object →
Proudly powered by WordPress