为什么在尝试将 UIWebView 添加到此 ViewController 头文件时出现这些错误?
我按照此处的步骤操作: http: //matt.might.net/articles/how-to-native-iphone-ipad-apps-in-javascript/
以下是将网络应用程序转变为本机应用程序的基本步骤:
- 打开 XCode。
- 创建一个新的“基于视图的应用程序”iPhone 项目。
- 将 Web 应用程序的文件移至 XCode 中的 Resources 文件夹中, 但删除缓存清单。 (你不想要清单 把事情搞砸了,因为现在一切都是本地的。)
- 在@interface内创建一个新的实例变量webView ViewController 头文件: IBOutlet UIWebView* webView ; // IBOutlet 意味着它对 Interface Builder 可见。
- 并创建一个属性:@property(nonatomic,retain)UIWebView *网络视图;
这是我到目前为止所得到的(ViewController.h):
#import <UIKit/UIKit.h>
@interface ViewController : UIViewController
IBOutlet UIWebView* webView;
@property (nonatomic, retain) UIWebView *webView;
@end
但是,在第 4 步中,我的 ViewController 头文件中出现两个错误:
“不能在@interface或@protocol内声明变量”
和
“iboutlet属性只能应用于实例变量或 属性”
那么我做错了什么,还是那个网站教程错了?
:我下载了他为 iPhone 提供的示例项目,它可以工作,但我正在按照教程制作一个 iPad 版本。
我使用的是 XCode 4该错误表明我使用的是 iOS 5 还是 iOS 4.3 似乎没有什么区别。
I was following the steps here: http://matt.might.net/articles/how-to-native-iphone-ipad-apps-in-javascript/
Here are the bare bones steps to turning a web app into a native app:
- Open XCode.
- Create a new "View-based Application" iPhone project.
- Move the files for your web app into the Resources folder in XCode,
but strip out the cache manifest. (You don't want the manifest
screwing things up, since everything is now local.)- Create a new instance variable, webView, inside the @interface
ViewController header file: IBOutlet UIWebView* webView ; //
IBOutlet means it's visible to Interface Builder.- and create a property: @property (nonatomic, retain) UIWebView
*webView;
Here is what I have thus far (ViewController.h):
#import <UIKit/UIKit.h>
@interface ViewController : UIViewController
IBOutlet UIWebView* webView;
@property (nonatomic, retain) UIWebView *webView;
@end
However on step 4 I am getting two errors in my ViewController header file:
"cannot declare variable inside @interface or @protocol"
and
"iboutlet attribute can only be applied to instance variables or
properties"
So what am I doing wrong, or is that website tutorial wrong?
Note: I downloaded the sample project he had for iPhone and it worked, but I am following the tutorial so I can make an iPad version.
I am in XCode 4 and the error shows whether I do iOS 5 or iOS 4.3 doesn't seem to make a difference.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你在那里缺少几个大括号:
You're missing a couple of curly braces there:
我想你忘记了括号;尝试将您的代码更改为
I think you forgot the brackets; try to change your code to