Objective C の別のクラスの mutablearray を単純にクリアしようとすると、コードはすべて正常に実行されますが、データは消去されません....
SecondViewController.h
@interface SecondViewController : UIViewController <UITableViewDelegate,UITextFieldDelegate,ABPeoplePickerNavigationControllerDelegate>
{
AppDelegate *appDelegate;
}
@property (nonatomic, retain) NSMutableArray *contactsArray;
それがmutablearrayの宣言です...
次に、削除しようとしているクラスから。
listViewController.h
#import "SecondViewController.h"
@interface ListViewController : UIViewController <UITableViewDelegate,ABPeoplePickerNavigationControllerDelegate,UITabBarControllerDelegate>{
AppDelegate *appDelegate;
SecondViewController *secondViewControl;
}
@property (nonatomic, retain) IBOutlet UITableView *table;
次に、メインファイルでコードを使用します
[secondViewControl.contactsArray removeAllObjects];
しかし、配列を確認すると、空になっていません...
編集:
@implementation ListViewController
@synthesize table;
/*- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
if (self) {
// Custom initialization
}
return self;
}*/
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view.
appDelegate = (AppDelegate *)[[UIApplication sharedApplication]delegate];
secondViewControl = [[SecondViewController alloc]init];