Я получил пробу, когда пытался установить свойство webview на uiviewcontroller.
вот код:
UIWebView:
@interface mainView : UIWebView {
int currentPage;
}
@property int currentPage;
и я синтезирую на реализации
UIViewController
(void)loadView {
webview = [[mainView alloc]init];
webview.currentPage = 2; // error -> Request for member "currentPage' in something not a structure or union
self.view=webview;
[webview release];
}
почему я не могу установить свойство currentPage?
Кто-нибудь знает решение, чтобы я мог установить currentPage на UIViewController?
Спасибо.