ios计算个税方法以及ui界面设计代码详解

本文详细讲解了如何在iOS应用中实现个税计算功能,包括UI界面设计和代码实现。通过创建UITextField输入工资,计算个税并显示结果,同时提供了键盘隐藏和界面布局的代码示例。
摘要由CSDN通过智能技术生成

//
// 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
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值