私はコレクション ビュー (親ビュー) と SWReveal の安定したビューがあるアプリで作業しています。テーブル ビューで行を選択し、Swreveal ビュー コントローラーを閉じると。親ビューでは、コレクション ビューを除くすべてのデータを使用できます。コレクション ビューが Null になります。ここに私のコード
親 view.h
#import <UIKit/UIKit.h>
#import "MyNotificationsViewController.h"
#import "NotesandReminders.h"
#import "Cell.h"
#import "SWRevealViewController.h"
@interface TimeTableViewController : UIViewController <UICollectionViewDataSource, UICollectionViewDelegate,MJSecondPopupDelegate,UIAlertViewDelegate>
{
UIPopoverController *popoverController;
// IBOutlet UICollectionView *collectionData;
}
@property (nonatomic, retain) IBOutlet UICollectionView *collectionData;
親ビュー .m
-(void)TestMethod
{
NSLog(@"taggg %d ",tag);
NSLog(@"indexxx %@",indexPathsss);
NSLog(@"eht collection data %@",collectionData);
// [self ChangeCells];
}
SwREvel view controller .h
#import <UIKit/UIKit.h>
#import "LearningSearchCell.h"
#import "TimeTableViewController.h"
#import "AppDelegate.h"
@interface LearningSearchController : UIViewController<UITableViewDataSource,UITableViewDelegate>
@property(strong,nonatomic)TimeTableViewController *TimeObj;
@property(nonatomic,assign)AppDelegate *AppObj;
@end
SwReveal ビュー コントローラー.M
-(void)viewWillDisappear:(BOOL)animated
{
_TimeObj=[TimeTableViewController alloc];
[_TimeObj TestMethod];
//from here i call the Test method of parent view controller... i am getting all values except the collection view becomes null
}
私もプロパティを作成して合成しようとしました..それはまだnullです