私の質問はこれと非常によく似ていますが、私はnil
自分から戻っていません。たとえば、インデックス 3のオブジェクトから値を取得するにはどうすればよいでしょうか。次のようなものです。NSMutableArray
NSMutableArray
name
Timeline
NSLog(@"tlresults: %@",(Timeline *)[tlresults objectAtIndex:3].name);
インデックス 3 の Timeline.name 値を返します。
Timeline.h
@interface Timeline : NSObject
{
NSString *_name;
NSInteger _up;
NSInteger _down;
NSInteger _timeofdatapoint;
}
@property (nonatomic,retain) NSString *name;
@property (nonatomic) NSInteger up;
@property (nonatomic) NSInteger down;
@property (nonatomic) NSInteger timeofdatapoint;
@end
タイムライン.m
#import "Timeline.h"
@implementation Timeline
@synthesize name = _name;
@synthesize up = _up;
@synthesize down = _down;
@synthesize timeofdatapoint = _timeofdatapoint;
@end
オブジェクトを追加して取得をテストする関数:
#import "Timeline.h"
...
NSMutableArray *tlresults = [[NSMutableArray alloc] init];
for (int i=0; i<10; i++) {
Timeline *tlobj = [Timeline new];
tlobj.name = username;
tlobj.up = 2*i;
tlobj.down = 5*i;
tlobj.timeofdatapoint = 2300*i;
[tlresults addObject:tlobj];
[tlobj release];
}
NSLog(@"tlresults count: %d",[tlresults count]);
NSLog(@"marray tlresults: %@",(Timeline *)[tlresults objectAtIndex:3]);
...
出力:
tlresults count: 10
tlresults: Timeline: 0x7292eb0