简单的UIButton按钮动画效果iOS源码_移动开发_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > 移动开发 > 简单的UIButton按钮动画效果iOS源码

简单的UIButton按钮动画效果iOS源码

 2014/12/9 11:19:02  huasili  程序员俱乐部  我要评论(0)
  • 摘要:这个是简单的UIButton按钮动画效果案例,源码,简单的UIButton按钮动画,可以自定义button属性。效果图:<ignore_js_op>使用方法:使用时把ButtonAnimations.h和.m文件导入新工程即可ButtonAnimations*btView=[[ButtonAnimationsalloc]initWithFrame:CGRectMake(10,150,self.view.bounds.size.width,80)];[self
  • 标签:iOS 源码

这个是简单的UIButton按钮动画效果案例,源码,简单的UIButton按钮动画,可以自定义button属性。 效果图:

  • <ignore_js_op>class="zoom" src="/Upload/Images/2014120911/245C1273067491ED.jpg" alt="" width="320" /> 


使用方法


使用时把ButtonAnimations.h 和.m文件导入新工程即可 

ButtonAnimations *btView = [[ButtonAnimations alloc] initWithFrame:CGRectMake(10, 150, self.view.bounds.size.width, 80)]; 
     
    [self.view addSubview:btView]; 
     
    [btView setNeedsDisplay:@[@"50",@"100",@"200"]]; 
     
     
    [btView sendCar:^(NSString *sendType, NSString *sendPrice) { 
        NSLog(@"sendType:%@ sendPrice:%@",sendType, sendPrice); 
    }];

 

详细说明:http://ios.662p.com/thread-2272-1-1.html

发表评论
用户名: 匿名