为什么在尝试将 UIWebView 添加到此 ViewController 头文件时出现这些错误?

发布于 2024-12-07 09:11:29 字数 1266 浏览 1 评论 0原文

我按照此处的步骤操作: http: //matt.might.net/articles/how-to-native-iphone-ipad-apps-in-javascript/

以下是将网络应用程序转变为本机应用程序的基本步骤:

  1. 打开 XCode。
  2. 创建一个新的“基于视图的应用程序”iPhone 项目。
  3. 将 Web 应用程序的文件移至 XCode 中的 Resources 文件夹中, 但删除缓存清单。 (你不想要清单 把事情搞砸了,因为现在一切都是本地的。)
  4. 在@interface内创建一个新的实例变量webView ViewController 头文件: IBOutlet UIWebView* webView ; // IBOutlet 意味着它对 Interface Builder 可见。
  5. 并创建一个属性:@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:

  1. Open XCode.
  2. Create a new "View-based Application" iPhone project.
  3. 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.)
  4. Create a new instance variable, webView, inside the @interface
    ViewController header file: IBOutlet UIWebView* webView ; //
    IBOutlet means it's visible to Interface Builder.
  5. 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:

enter image description here

"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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

栩栩如生 2024-12-14 09:11:30

你在那里缺少几个大括号:

#import <UIKit/UIKit.h>

@interface ViewController : UIViewController {
    UIWebView *webView;
}

@property (nonatomic, retain) IBOutlet UIWebView *webView;

@end

You're missing a couple of curly braces there:

#import <UIKit/UIKit.h>

@interface ViewController : UIViewController {
    UIWebView *webView;
}

@property (nonatomic, retain) IBOutlet UIWebView *webView;

@end
清风不识月 2024-12-14 09:11:30

我想你忘记了括号;尝试将您的代码更改为

#import <UIKit/UIKit.h>

@interface ViewController : UIViewController {

    IBOutlet UIWebView* webView;
}

@property (nonatomic, retain) UIWebView *webView;
@end

I think you forgot the brackets; try to change your code to

#import <UIKit/UIKit.h>

@interface ViewController : UIViewController {

    IBOutlet UIWebView* webView;
}

@property (nonatomic, retain) UIWebView *webView;
@end
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文