//
// ZYAppDelegate.m
// UITest1
//
// Created by cacahaha on 15/4/8.
// Copyright (c) 2015年 ZhiYou. All rights reserved.
//
import “ZYAppDelegate.h”
@implementation ZYAppDelegate
//入口方法
- (BOOL)application:(UIApplication )application didFinishLaunchingWithOptions:(NSDictionary )launchOptions
{
self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
self.window.backgroundColor = [UIColor greenColor];
[self.window makeKeyAndVisible];
//背景button按钮,用来让鼠标点击背景时让键盘隐藏
UIButton *buttonbg = [[UIButton alloc]initWithFrame:CGRectMake(0, 0, 320, 480)];//创建一个button对象,并初始化其位置
[_window addSubview:buttonbg];//将button添加到窗口
[buttonbg addTarget:self action:@selector(bgclick) forControlEvents:UIControlEventTouchUpInside];//为button添加点击事件bgclick,事件类型是当手指触摸按钮离开后仍在按钮之上则会触发此事件
//工资label
UILabel *label1 = [[UILabel alloc]initWithFrame:CGRectMake(30, 100, 40, 35)];//创建一个label对象,并初始化其位置信息
[_window addSubview:label1];//将label添加到窗口
label1.textAlignment = NSTextAlignmentCenter;//设置label中文字的对齐方式
//label1.backgroundColor = [UIColor redColor];//设置label的背景色
label1.text = @"工资";//设置label中文字内容
//label 标签,创建一个label对象
label = [[UILabel alloc] init];
//设置label要显示的文字
label.text = @"我会显示税后工资吆";
//左上角是0,0 点,屏幕宽度320,高度480(3.5寸),高度568(4寸屏),x,y指的是左上角的坐标
CGRect rect = CGRectMake(60, 160, 200, 40);
label.frame = rect;
label.textAlignment = NSTextAlignmentCenter;
UIColor *color2 = [[UIColor alloc] initWithRed:0 green:1 blue:0 alpha:1];//创建一个color对象
label.textColor = color2;//设置label字体颜色
UIFont *size = [UIFont fontWithName:@"Tre