私はiphoneを初めて使用します。以下のようなクラスDownloadManager.mにあるNSMutableArrayを持っていることに少し疑問があります
- (void) queueDownload: (Download*) download
{
[bookTitlesWhichAreInDownloadQueue addObject:download.title_];
NSLog(@"bookTitlesWhichAreInDownloadQueue is %@",bookTitlesWhichAreInDownloadQueue);
}
上記のメソッドbookTitlesWhichAreInDownloadQueue
は NSMutableArray です
以下のメソッドである別のクラス(BiblePlayerViewController.m)にあるメソッドでこの配列にアクセスしたい
-(void)showingAlertViewWhenBookIsNotDownloaded {
NSLog(@"bookNamesWhichAreInDownloadedQueue1 is %d",[bookNamesWhichAreInDownloadedQueue count]);
}
体がこれを知っているなら、どうすれば可能ですか?助けてください...