首页 > 代码库 > IOS-入门示例
IOS-入门示例
程序要求
实现点击一个按钮,在对应的文本框内显示当前日期时间(Xcode6.1版本)
实现主要步骤
- 新建一个IOS的基本工程
- 修改界面,打开Main.storyboard,使用界面编辑器(IB)拖拽出一个按钮和文本编辑框 (View)
- 在control里面新建按钮事件响应函数,-(IBAction)onClickButton:(id)sender (Control)
- 在control里面新建文本框的连接变量,使得修改该变量反映在修改文本框上 (Control)
- 在界面编辑器里(IB)面,按住ctrl,从按钮出拉出一条直线到上面的View Control上,然后选择列表中的按钮事件响应函数即可实现按钮按下和响应函数之间的连接。(或者点击按钮,从右侧的工具栏Show the connections inspector列表中的Touch Up Inside拉一条直线到窗口上面的View Control,然后选择事件响应函数即可) (从界面拉直线到View Control)
- 打开界面编辑器(IB),从View Control拉一条直线到文板框,然后选择列表中定义的文板框变量即可实现文板框和变量的连接(从View Control拉直线到界面)
- 实现逻辑代码,包括设置变量,响应函数的编写
示例代码
- ViewController.h
// // ViewController.h // 1129_HelloWolrd // // Created by God Lin on 14/11/29. // Copyright (c) 2014年 arbboter. All rights reserved. // #import <UIKit/UIKit.h> @interface ViewController : UIViewController { UITextField* textTime; } @property (nonatomic, retain) IBOutlet UITextField* textTime; -(IBAction)onClickTimeBtn:(id)sender; @end
- ViewController.m
// // ViewController.m // 1129_HelloWolrd // // Created by God Lin on 14/11/29. // Copyright (c) 2014年 arbboter. All rights reserved. // #import "ViewController.h" @interface ViewController () @end @implementation ViewController @synthesize textTime; -(IBAction)onClickTimeBtn:(id)sender { if(textTime) { NSDate* date = [NSDate date]; textTime.text = [date description]; } } - (void)viewDidLoad { [super viewDidLoad]; // Do any additional setup after loading the view, typically from a nib. } - (void)didReceiveMemoryWarning { [super didReceiveMemoryWarning]; // Dispose of any resources that can be recreated. } @end
IOS-入门示例
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。