本文主要是介绍进击的KFC:UI(四)实现划屏效果,用View实现Button的效果,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
实现划屏效果:
UITouch类:保存手指信息(触摸的点)
开始触摸方法:
-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
{UITouch *touch = [touches anyObject];// 取出当前触摸的点:CGPoint p1 = [touch locationInView:self];CGPoint p2 = [touch previousLocationInView];
}// 只要你不松手,就一直调用这个方法
-(void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event
{// 获取touch位置处的信息UITouch *touch = [touches anyObject];// 取出当前的点CGPoint p1 = [touch locationInView:self]; // self 就是TouchView本体// 取出当前点的上一个点,CGPoint p2 = [touch previousLocationInView:self];//计算x轴的偏移量,CGFloat x = p1.x - p2.x;// 计算y轴的偏移量CGFloat y = p1.y - p2.y;// 动态改变视图中原来的中心点,这样写,不会跳顿self.center = CGPointMake(x + self.center.x, y + self.center.y);NSLog(@"移动中的point:%@",NSStringFromCGPoint(p1));// 三原色 计算所占的比例来调整颜色self.backgroundColor = [UIColor colorWithRed:arc4random()%256/255.0 green:arc4random()%256/255.0 blue:arc4random()%256/255.0 alpha:1];NSLog(@"触摸中........");}/*响应者链分为两个过程1.查询过程当你点击屏幕先定位到 应用程序Application -> window -> ViewController -> self.view -> view上的子视图 一一查找,直到定位到被点击的子视图 查询过程结束2.响应过程首先,看本视图,能不能处理事件(实现了touchBegin等方法 就叫做可以处理事件) -> 父视图 -> 一层一层往下看,能不能处理,直到window 如果都不能处理该次点击事件 被遗弃(无效点击)阻断响应者链 : 响应者链可以被打断。⽆法完成检测查询过程注意:UILabel UIImageView的交互 默认是关闭的
// 关闭button的交互 (阻断的是查询的过程)
// button.userInteractionEnabled = NO;*/
用presentViewController,dismissViewController 方法来跳转页面. 模态视图动画是从下面跳出来,常用于跳出一个登陆界面,
晃动方法:motionBegan:...等四个方法用继承UIView的ButtonView的类来实现UIButton的添加方法的功能!!
1.新建一个ButtonView,继承UIView
3.在ButtonView.h中声明属性
// 为了方便下面使用
// 模仿按钮的两个属性
// button addTarget:<#(id)#> action:<#(SEL)#> forControlEvents:<#(UIControlEvents)#>
@Proterty (strong,nonatomic)id target;
@proterty (assign,nonatomic)SEL action;
- (instancetype)initWithFrame:(CGRect)frame target:(id)target action:(SEL)action;
3.在ButtonView.h里面实现自定义初始化方法,在初始化的时候就给id target 和 SEL action 赋值
- (instancetype)initWithFrame:(CGRect)frame target:(id)target action:(SEL)action
{self = [super initWithFrame:frame];if(self){// 初始化的时候,给属性进行赋值self.target = target;self.action = action;}return self;
}
// 触摸的四个方法,我们主要用到第三个:触摸结束时:
- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
{
}
- (void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event
{
}- (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event
{NSLog(@"点击");
// 让self.target 这个 对象 去调用 action方法
// 让一个 对象 去调用这个对象类里的方法
// Object 是可携带参数:Controller里面的buttonView的点击方法就传入什么类型的参数self.target performSelector:self.action withObject:self];}
- (void)touchesCancelled:(NSSet *)touches withEvent:(UIEvent *)event
{
}
// 然后在RootViewController 根视图控制器里面调用
先创建一个ButtonView
ButtonView *buttonView = [[ButtonView alloc] initWithFrame:CGRectMake(100, 100, 100, 50) target:self action: @selector(buttonViewClick:)];buttonView.background =[UIColor redColor];[self.View addSubView:buttonView];[buttonView release];// 实现buttonViewClick方法
- (void)buttonViewClick:(ButtonView *)buttonview
{// 简单操作:该变颜色:// 改变我们点击的buttonView的颜色,就是改变输入的参数buttonview的背景颜色buttonview.backgroundColor = [UIColor colorWithRed:arc4random()%256/255.0 green:arc4random() %256/ 255.0 blue:arc4random() %256/ 255.0 alpha:1];
}
这篇关于进击的KFC:UI(四)实现划屏效果,用View实现Button的效果的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!