I have an NSMutableArray (called postArray) of Objects Post.
The object Post is:
#import <Foundation/Foundation.h>
#import <MapKit/MapKit.h>
@interface PostAnnotation : NSObject <MKAnnotation>
@property NSInteger annotationID;
@property NSInteger postID;
@property (nonatomic, copy) NSString* profile;
@end
How I am going to change the value of the postArray.postID at object i? Thanks in advance!