UIButton基础知识

基本属性

  1.frame;坐标;title;titlecolor;字体颜色;titleShadowColor:字体阴影;image:图片; backgroundImage:背景图片;

  2.forstate状态:这个参数决定了标题、图像或其他属性将在何种状态下显现

    UIControlStateNormal:常态

    UIControlStateHightlighted: is set 高亮

    UIControlStateDisabled:禁用

    UIControlStateSelected:中

    UIControlStateApplicationg:plication use 当应用程序标志使用时

    UIControlStateReserview;为内部框架预留的

  3.当按钮高亮或者禁用,UIButton类可以调整自己的外观,下面几个属性可以让你按照需要对按钮的外观进行微调

      adjustsImageWhenHightlighted:默认情况下,在按钮被禁用时,图像会被画的颜色深些

      adjustsImageWhendisabled:默认情况下,按钮在被禁用时,图像会被画的颜色淡一些

      showsTouchWhenHightlighted;这个属性设置为YES,可使按钮在按下时发光

重写绘制行为

  backgroundRectForBounds:指定背景边界

  contentRectForBounds:指定内容边界

  titleRectForContentRent:指定文字标题边界

  imageRectForContentRect;指定按钮图像边界

添加动作

  -addTarget;action:forControlEvents:

  

初始化UIButton控件显示在屏幕上

  UIButton *button = [[UIbutton alloc] initWithFrame:CGRectMake(10,10,10,10)];

  [button setBackgroundColor: [UIColor blueColor]];

  [button setTitle:@"view" forState :UIControlStateNormal];

  [self.view addSubview :button];

  2.UIButton的一个类方法ButtonWithType

  UIButton *button = [UIButton buttonWithType: UIButtonTypeRoundedRect];

  [button setFrame:CGRectMake(10,10,10,10)];

  [button setBackgroundColor: [UIColor blueColor]];

  [button setTitle: @"view" forState :UIControlStateNormal];

Button的响应事件

  [button addTarget:self action:@selector(haoshuaihaofan:) forControlEvents:UIControlEventTouchUpInside];

  [self.view addSubview: button];

时间: 2024-10-06 17:46:01

UIButton基础知识的相关文章

iOS开发基础知识--碎片2

iOS开发基础知识--碎片2 六:获得另一个控件器,并实现跳转 UIStoryboard* mainStoryboard = [UIStoryboard storyboardWithName:@"MainStoryboard" bundle:nil]; UIViewController *registerViewController = [mainStoryboard instantiateViewControllerWithIdentifier:@"registerView

iOS开发基础知识--碎片12

iOS开发基础知识--碎片12 1:Delegate运用 .h #import <UIKit/UIKit.h> @protocol FilterHeaderViewDelegate <NSObject> @required -(void)filterHeaderViewMoreBtnClicked:(id)sender; @end extern float CYLFilterHeaderViewHeigt; @interface FilterHeaderView : UIColle

iOS开发基础知识--碎片14

iOS开发基础知识--碎片14  1:ZIP文件压缩跟解压,使用ZipArchive 创建/添加一个zip包 ZipArchive* zipFile = [[ZipArchive alloc] init]; //次数得zipfilename需要一个完整得路径,例如***/Documents/demo.zip [zipFile CreateZipFile2:@"zipfilename"]; //有两种可选得方式进行创建压缩包,带密码和不带密码的 [[zipFile CreateZipFi

iOS开发基础知识--碎片9

iOS开发基础知识--碎片9  1:两种方法删除NSUserDefaults所有记录 //方法一 NSString *appDomain = [[NSBundle mainBundle] bundleIdentifier]; [[NSUserDefaults standardUserDefaults] removePersistentDomainForName:appDomain]; //方法二 - (void)resetDefaults { NSUserDefaults * defs = [N

iOS开发基础知识--碎片11

iOS开发基础知识--碎片11  1:AFNetwork判断网络状态 #import “AFNetworkActivityIndicatorManager.h" - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { //网络 [[AFNetworkActivityIndicatorManager sharedManager] se

iOS开发基础知识--碎片8

iOS开发基础知识--碎片8  1:用UIImageView作为背景,但直接把按钮或者 UITextField放在上面无法相应事件. 解决办法:UIImageView默认的UserInteractionEnabled是NO,把它修改成YES,或者可以直接在XCODE上面的view有个属性勾选User Interaction Enabled 遇到的场景(在滚动视图里面放一个图片视图,在图片视图上又放置一个按键,发现一直没有响应效果); 2:AFnetWorking报"Request failed:

iOS开发基础知识--碎片17

iOS开发基础知识--碎片17 iOS开发基础知识--碎片17 1:contentSize.contentInset和contentOffset区别 contentSize 是scrollview中的一个属性,它代表scrollview中的可显示区域,假如有一个scrollview,它的frame为(0,0,320,480),而它的contentSize为(320,960).也就是说,这个scrollview整个内容的大小为(320,960),要通过上下滑动scrollview来查看(320,4

IOS开发基础知识碎片-导航

1:IOS开发基础知识--碎片1 a:NSString与NSInteger的互换 b:Objective-c中集合里面不能存放基础类型,比如int string float等,只能把它们转化成对象才可以存放,就是类NSNumber c:NSDATA与NSString互转 d:去除输入框空格(NSString也适用) f:IBOutlet,IBAction说明 2:IOS开发基础知识--碎片2  a:获得另一个控件器,并实现跳转 b:判断IOS版本 c:Button不同状态下背景图片 d:判断设备

MySQL数据库基础知识

day02 MySQL数据库基础知识 一.基础知识概述: 基础决定你这门课程的学习成败!只有学习好这些基础知识以后,你才能真正的运用自如.才能够对数据库有更深入的了解,道路才会越走越远. 二.基础知识: 1.数据库(database):数据库就好比是一个物理的文档柜,一个容器,把我们整理好的数据表等等归纳起来. 创建数据库命令:        create database 数据库名; 2.查看数据库         show databases; 3.打开指定的数据库         use