7> 手势识别 使用UIImageView原因:之前既能看见图片,又能监听点击的只有UIButton,学了手势,我们的UIImageView也可以。 * tap(代理:左边不能点,右边能点) * longPress(allowableMovement:触发之前,最大的移动范围) > 默认调用两次,开...
分类:
移动开发 时间:
2015-08-31 17:04:04
阅读次数:
227
封装一个UIImageView的点击事件像UIButton那样的点击事件 首先 创建一个类 继承自UIImageView 在类里实现一个点击的方法 - (void)addTarget:(id)target action:(SEL)action 在这个方法里把userInteractionEnable...
分类:
其他好文 时间:
2015-08-31 14:50:16
阅读次数:
127
如下图:
UIButton *leftBtn = [UIButton buttonWithType:UIButtonTypeCustom];
leftBtn.frame = CGRectMake(0, 0, 40, 35);
//
leftBtn.contentHorizontalAlignment = UIControlCont...
分类:
其他好文 时间:
2015-08-31 13:34:32
阅读次数:
143
属性:
1、alpha <= 0.01 透明的情况下无法点击2、hidden = YES 设置为隐藏状态无法点击storyboard属性设置
3、userInteraction = NO 视图之间关系4、父视图不允许交互,字视图也就不允许交互5、在父视图可见范围内,可以交互,范围之外不可交互...
分类:
移动开发 时间:
2015-08-31 06:32:28
阅读次数:
235
在上一篇中,我们基本已经把整个框架都搭建出来了,下面进行代码重构一下。思路:导航按钮,按下时,会变灰,那是系统自带了,通过自定义UIButton,实现按下按钮立即切换效果。MJTabBarController管得太多了,只需要传图片过去,即创建好一个TabBar.通过代理实现底部tabbar的切换。...
分类:
移动开发 时间:
2015-08-31 06:21:58
阅读次数:
279
一、Touch手势1、利用手势实现UIButton移动效果 实例代码 1) 创建一个继承自UIButton的类 MyButton.h 代码实现1 #import 2 @interface MyButton : UIButton3 @end2)MyButton.m 的代码实现 1 #import "M...
分类:
移动开发 时间:
2015-08-30 21:00:01
阅读次数:
213
UIButton状态:UIControlStateNormal // 正常状态 UIControlStateHighlighted // 高亮状态 UIControlStateDisabled // 禁用状态 UIControlStateSelected // 选中状态 UIControlState...
分类:
其他好文 时间:
2015-08-30 12:40:34
阅读次数:
146
#import "ViewController.h"
@interface ViewController ()
@property(nonatomic,weak)IBOutlet UIButton *button;
@property(nonatomic,weak)IBOutlet UIImageView *imageView;
@end
@implementation ViewCo...
分类:
其他好文 时间:
2015-08-30 01:01:23
阅读次数:
164
学贵初有坚决不移之志,中有勇猛精进之心,末有坚贞永固之力 -- 曾国藩
分类:
其他好文 时间:
2015-08-29 21:30:54
阅读次数:
251