В последнее время произошли некоторые обновления плагина дочернего браузера, когда я пытаюсь скомпилировать его для Iphone и phonegap 1.4.1 Я получаю ошибки сборки.
@property declaration not in @interface or @implementation
#ifdef PHONEGAP_FRAMEWORK
@interface ChildBrowserCommand : PGPlugin <ChildBrowserDelegate> {
#endif
#ifdef CORDOVA_FRAMEWORK
@interface ChildBrowserCommand : CDVPlugin <ChildBrowserDelegate> {
#endif
ChildBrowserViewController* childBrowser;
}
@property (nonatomic, retain) ChildBrowserViewController *childBrowser;
- (void) showWebPage:(NSMutableArray*)arguments withDict:(NSMutableDictionary*)options;
-(void) onChildLocationChange:(NSString*)newLoc;
@end