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
    

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。