最近对儿童浏览器插件进行了一些更新,当我尝试为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