在我的应用程序中,我添加了一些注释。我有一个带有共享实例的 AnnotationController,因此我可以在我的所有类中访问我的注释。我将添加的注释推送到一个可变数组中。
但是,我想将我的注释标题添加到 tableView,所以我想再次加载我的数组并访问我使用“initWithTitle”提供的参数。
像这样的东西:
[AnnotationController sharedInstance].annotations[1].title ?
编码
NSArray *init = @[
[[Annotation alloc] initWithTitle:@"America has a new President !" :@"Washington DC" :l1], // call method to add an annotation with these parameters
[[Annotation alloc] initWithTitle:@"Revolutionary app by Belgium student" :@"Antwerp" :l2],
[[Annotation alloc] initWithTitle:@"The new Arabic revolution" :@"Egypt, Tahir square" :l3],
[[Annotation alloc] initWithTitle:@"World Championchip football" :@"Rio de Janeiro" :l4],
];
[AnnotationController sharedInstance].annotations = [[NSMutableArray alloc] initWithArray:init]; // add the above array to a mutablearray se we can add objects and edit them