[IOS实例小计]计数器--启示就是简单的按钮方法操作,主要学习目

来源:未知 责任编辑:责任编辑 发表时间:2015-09-17 09:43 点击:
直接上代码: p> 

p>//  

p>//  CountMeViewController.h  

p>//  ImageView  

p>//  

p>//  Created by zhang xujun on 13-9-9.  

p>//  Copyright (c) 2013年 zhang xujun. All rights reserved.  

p>//  

p>  

p>#import <UIKit/UIKit.h>  

p>  

p>@interface CountMeViewController : UIViewController  

p>  

p>  

p>@property (strong,nonatomic) IBOutlet UIButton *returnSuperView;  

p>@property (strong,nonatomic) IBOutlet UILabel *countLabel;  

p>@property (strong,nonatomic) IBOutlet UIButton *add;  

p>@property (strong,nonatomic) IBOutlet UIButton *sub;  

p>@property (strong,nonatomic) IBOutlet UIButton *reset;  

p>-(IBAction)returnSuperView:(id)sender;  

p>-(IBAction)countAdd:(id)sender;  

p>-(IBAction)countSub:(id)sender;  

p>-(IBAction)reset:(id)sender;  

p>@end  

p>//  

p>//  CountMeViewController.m  

p>//  ImageView  

p>//  

p>//  Created by zhang xujun on 13-9-9.  

p>//  Copyright (c) 2013年 zhang xujun. All rights reserved.  

p>//  

p>  

p>#import "CountMeViewController.h"  

p>  

p>@interface CountMeViewController ()  

p>  

p>@end  

p>  

p>@implementation CountMeViewController  

p>@synthesize  returnSuperView;  

p>@synthesize countLabel;  

p>@synthesize add;  

p>@synthesize sub;  

p>@synthesize reset;  

p>  

p>int count = 0;  

p>  

p>- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil  

p>{  

p>    self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];  

p>    if (self) {  

p>        // Custom initialization  

p>    }  

p>    return self;  

p>}  

p>  

p>- (void)viewDidLoad  

p>{  

p>    [super viewDidLoad];  

p>    self.countLabel.text = @"0";  

p>      

p>}  

p>-(void)countAdd:(id)sender{  

p>  

p>    if (count>=99) {  

p>        return;  

p>    }  

p>    NSString *addCount = [[NSString alloc] initWithFormat:@"%d",++count];  

p>    self.countLabel.text = addCount;  

p>      

p>      

p>}  

p>-(void)countSub:(id)sender{  

p>  

p>    if (count<=0) {  

p>        return;  

p>    }  

p>    NSString *subCount = [[NSString alloc] initWithFormat:@"%d",--count];  
发表评论
请自觉遵守互联网相关的政策法规,严禁发布色情、暴力、反动的言论。
用户名: 验证码:点击我更换图片
最新评论 更多>>

推荐热点

  • Lexical or Preprocessor Issue 'xxx.h
  • ios学习笔记(二)xcode 4.3.2下实现基本交互
  • ios学习笔记(一)xcode 4.3.2下创建第一个ios项目
  • UITableView一些方法
  • IOS类似iphone通讯录TableView的完整demo【附源码】
  • ios版本的helloworld
  • iPhone SDK开发:本地文本文件内容的读取
  • 如何为Iphone应用创建启动界面
  • 去掉屏幕键盘的方法
网站首页 - 友情链接 - 网站地图 - TAG标签 - RSS订阅 - 内容搜索
Copyright © 2008-2015 计算机技术学习交流网. 版权所有

豫ICP备11007008号-1