xcode-UIbutton *button=(UIbutton *)timer.userInfo

问题描述

UIbutton *button=(UIbutton *)timer.userInfo
定时器事件触发,这个userinfo什么意思。
求大神告知。。。。。

解决方案

你启动定时器作为第三方参数传给定时器的吗,你也可以传其他的给他,看你的定时器那行代码的参数就知道了,参数名userinfo

解决方案二:
可以通过userinfo传递一个参数给你创建timer
timer执行的时候可以用。

解决方案三:
传递的一个参数,NSDictionary类型的

时间: 2024-09-21 20:10:34

xcode-UIbutton *button=(UIbutton *)timer.userInfo的相关文章

IOS基础学习UIButton使用详解

  UIButton按钮是IOS开发中最常用的控件,作为IOS基础学习教程知识 ,初学者需要了解其基本定义和常用设置,以便在开发在熟练运用. 第一.UIButton的定义 UIButton *button=[[UIButton buttonWithType:(UIButtonType); 能够定义的button类型有以下6种, typedef enum { UIButtonTypeCustom = 0, 自定义风格 UIButtonTypeRoundedRect, 圆角矩形 UIButtonTy

详解iOS中UIButton的三大UIEdgeInsets属性用法_IOS

UIEdgeInsets是什么 UIEdgeInsets是什么?我们点进去看一下: typedef struct UIEdgeInsets { CGFloat top, left, bottom, right; // specify amount to inset (positive) for each of the edges. values can be negative to 'outset' } UIEdgeInsets; UIEdgeInsets是个结构体类型.里面有四个参数,分别是:

IOS UIButton使用详解

第一.UIButton的定义       UIButton *button=[[UIButton buttonWithType:(UIButtonType); 能够定义的button类型有以下6种,  typedef enum {  UIButtonTypeCustom = 0, 自定义风格  UIButtonTypeRoundedRect, 圆角矩形   UIButtonTypeDetailDisclosure, 蓝色小箭头按钮,主要做详细说明用  UIButtonTypeInfoLight,

UIButton

一.前言     该博客里面的方法均是看着苹果官方的API来解释的,如有问题,请指出. 二.简介:     UIButton就是一个按钮,它的应用十分广泛,比如登录,注册,忘记密码等功能的实现时都需要用到按钮.现在就让我们一起走进UIButton. 二.常用方法     1.+ (id)buttonWithType:(UIButtonType)buttonType;  (IOS2及其以后有)     该方法用与创建和返回一个带有制定样式的按钮.当使用该方法创建一个button,这个button的

ios-给subView添加UIButton

问题描述 给subView添加UIButton 在用户点击屏幕时,应该有一个带按钮的弹出窗出现.但是弹出窗出现,按钮没出现.不知道哪出错了.是在subView中的subView. -(void) popUpWithX:(int)x andY:(int)y { CGRect popUpRect = CGRectMake(x, y, 125, 75); popUp = [[UIView alloc] initWithFrame:popUpRect]; popUp.backgroundColor =

ios-批量UIButton垂直显示不同名称

问题描述 批量UIButton垂直显示不同名称 有三个不同的button,在UIView中用一个循环显示,但是只显示了一个button. float yButton = 50.0; for (int i = 0; i < 2; i++) { UIButton *button = [UIButton buttonWithType:UIButtonTypeRoundedRect]; button.frame = CGRectMake(80.0, yButton + 70.0, 160.0, 40.0

objective-c-ios uibutton按钮点击变色

问题描述 ios uibutton按钮点击变色 不是换图片设置高亮那种 就是普通的一个按钮点击变色 有没有什么自带的方法 还是要去自定义 求解答 最好能给出代码 解决方案 UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom]; button.frame = CGRectMake(200, 200, 100, 40); button.backgroundColor = [UIColor redColor]; [button

Swift实现自由调整图标按钮中的图标和文字位置(扩展UIButton)

按钮UIButton是ios开发中最常见的控件之一,下面来介绍UIButton的详细内容,及开发中需要注意的问题. UIButton简介:    使用目标动作设计模式,target-action模式,3种回调的模式之一. 实现原理: 使用下面的方法封装,根据用户的点击移动等动作 - (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event; - (void)touchesMoved:(NSSet *)touches withEv

UIButton的titleLabel

UIButton的titleLabel @property(nonatomic, readonly, retain) UILabel *titleLabel   Description - 描述 A view that displays the value of the currentTitle property for a button. (read-only) 显示当前的button的文本(只读) Although this property is read-only, its own pr