我有一个 Objects Post 的 NSMutableArray(称为 postArray)。
对象 Post 是:
#import <Foundation/Foundation.h>
#import <MapKit/MapKit.h>
@interface PostAnnotation : NSObject <MKAnnotation>
@property NSInteger annotationID;
@property NSInteger postID;
@property (nonatomic, copy) NSString* profile;
@end
我将如何更改对象 i 的 postArray.postID 的值?提前致谢!