PendulumViewDemo_移动开发_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > 移动开发 > PendulumViewDemo

PendulumViewDemo

 2014/10/28 11:40:25  粉粉色  程序员俱乐部  我要评论(0)
  • 摘要:源代码地址:http://url.cn/Sj5SSX效果图:工程图:注意,此代码中要加入第三方库PendulumView。RootViewController.m//点击任何处弹出提示-(void)touchesBegan:(NSSet*)toucheswithEvent:(UIEvent*)event{UIColor*ballColor=[UIColorcolorWithRed:0.47green:0.60blue:0.89alpha:1]
  • 标签:

源代码地址:http://url.cn/Sj5SSX

效果图:

工程图:

注意,此代码中要加入第三方库PendulumView。

RootViewController.m

//点击任何处弹出提示
-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event{
    
    UIColor *ballColor = [UIColor colorWithRed:0.47 green:0.60 blue:0.89 alpha:1];
    PendulumView *pendulum = [[PendulumView alloc] initWithFrame:self.view.bounds ballColor:ballColor];
    [self.view addSubview:pendulum];
    
}

 

  • 相关文章
发表评论
用户名: 匿名