I want to read some data and they have such structures:
The split is a array as below:
Do I have to make split as a single class, can I put it into class StockSplit or any else simple method?
Code:
@interface StockSplit : NSObject {
NSString *code;
NSString *name;
NSString *market;
int unit;
bool N225;
bool OBS;
NSMutableArray *split
}
The split is a array as below:
Code:
struct {
NSDate *date;
float rate;
} SPLIT;
Do I have to make split as a single class, can I put it into class StockSplit or any else simple method?