开发学院手机开发iPhone 开发 一个简单的iPhone项目及代码 阅读

一个简单的iPhone项目及代码

 2010-08-26 11:04:00 来源:WEB开发网   
核心提示://2. 右键单击 或者CTRL+左键单击 "File's Owner",可以在弹出的Outlet一栏中看见//displayLable nameField sayButton三个变量名称//3. 分别拖动变量右边的空心圈连接至View界面上的组件即可}//定义一个按钮事件接收器//如何链接

//2. 右键单击 或者CTRL+左键单击 "File's Owner",可以在弹出的Outlet一栏中看见

//displayLable nameField sayButton三个变量名称

//3. 分别拖动变量右边的空心圈连接至View界面上的组件即可

}

//定义一个按钮事件接收器

//如何链接此接收器到button上呢

//1. 使用Interface Builder打开HelloUserViewController.xib,打开HelloUserViewController.xib中View

//2. 右键单击 或者CTRL+左键单击 "File's Owner",在Received Actions一栏中可以看到sayHello的动作

//3. 拖动sayHello右边的空心圈至View界面上的按钮即可

//4. 实现你的sayHello方法吧

-(IBAction) sayHello : (id) sender;

@end

//

// HelloUserViewController.h

// HelloUser

//

// Created by sin francis on 10-8-26.

// Copyright __MyCompanyName__ 2010. All rights reserved.

//

#import

@interface HelloUserViewController : UIViewController {

//链接到HelloUserViewController.xib 界面中的display label组件

IBOutlet UILabel *displayLable;

//链接到HelloUserViewController.xib 界面中的name Field组件

IBOutlet UITextField *nameField;

//链接到HelloUserViewController.xib 界面中的Button组件

IBOutlet UIButton *sayButton;

//注意:以上的只是引用,并未真实的链接到组件上去,那么就需要我们使用Interface Builder进行链接

//1. 使用Interface Builder打开HelloUserViewController.xib,打开HelloUserViewController.xib中View

//2. 右键单击 或者CTRL+左键单击 "File's Owner",可以在弹出的Outlet一栏中看见

//displayLable nameField sayButton三个变量名称

//3. 分别拖动变量右边的空心圈连接至View界面上的组件即可

}

//定义一个按钮事件接收器

//如何链接此接收器到button上呢

//1. 使用Interface Builder打开HelloUserViewController.xib,打开HelloUserViewController.xib中View

上一页  1 2 3 4 5 6 7  下一页

Tags:一个 简单 iPhone

编辑录入:coldstar [复制链接] [打 印]
[]
  • 好
  • 好的评价 如果觉得好,就请您
      0%(0)
  • 差
  • 差的评价 如果觉得差,就请您
      0%(0)
赞助商链接