I am having difficulty populating two TableViews with data from two different MutableArrays in one Class. I am parsing an *.xml document and want to put the d开发者_JAVA技巧ata into to different table
If I have a helper 开发者_StackOverflow社区method thats adds object to an array (NSMutableArray) in my custom class, would it make sense to do either:
I have two entity classes: Module.h @interface Module : NSObject { NSString *moduleCode4; NSString *moduleTitle4;
for(int i=0;i<[promotionArr count];i++) { // NSLog(@\"ok\"); Promotion *prom = [[Promotion alloc]init];
I have this code; for (int i = 0; i<period+1; i++){ NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
I\'m working on an iPhone app and I have defined a class as so: @interface PlotData : NSObject { NSString *sProbeID;
I would need some expert advice on how to solve this problem. I am doing some crude testing for a new app for the iPad.
I have this code: NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
Here I got from JSON [{\"photo\":null}] and I use this code NSMutableArray *jPhoto = [NSMutableArray arrayWithArray:(NSArray *)[jsonDict valueForKey:@\"photo\"]];
I have one UIViewController containing a UITableView. Along with this I have 3 buttons and 4 Mutablable arrays.