我分類了兩個視圖控制器。將數據從一個視圖控制器傳遞到另一個視圖控制器
第一個應該傳遞數據,NSUrl對象到第二個。
.M第一位的:
NSURL *temp = [NSURL URLWithString:@"http://example.com"];
UIViewController *presentationsFullScreen_ViewController = [self.storyboard instantiateViewControllerWithIdentifier:@"PresentationsFullScreen_ViewController"];
presentationsFullScreen_ViewController.urlToUse = temp;
第二個的.H:
#import <UIKit/UIKit.h>
@interface PresentationsFullScreen_ViewController : UIViewController {
NSURL *urlToUse;
}
@property (nonatomic,retain) NSURL *urlToUse;
這顯然是沒有工作,沒有編制,告訴我基本上是我沒有小類它並且在UIViewController上找不到屬性urlToUse。
如何正確地繼承子類?
謝謝!
您是否將故事板中的目標視圖控制器的類設置爲您的自定義子類? – geraldWilliam