码迷,mamicode.com
首页 > 其他好文 > 详细

精简版—愤怒的小鸟

时间:2016-01-19 10:40:53      阅读:153      评论:0      收藏:0      [点我收藏+]

标签:

  • 首先我们要布局一下,使用sizeclass来布局:

技术分享

  • 连线过来:
@property (weak, nonatomic) IBOutlet UIButton *bird;
@property (strong, nonatomic) IBOutletCollection(UIImageView) NSArray *ices;

对于冰块的连线,因为我们这里的冰块有4块,所以我们直接连的是一个数组

  • 懒加载一个UIDynamicAnimator
@property (strong, nonatomic) UIDynamicAnimator *animator;


- (UIDynamicAnimator *)animator
{
    if ( !_animator) {
        _animator = [UIDynamicAnimator new];
    }
    return _animator;

}
  • 接下来,我们给监听鸟的点击事件
- (IBAction)birdAction:(id)sender
{
    // 给鸟和冰添加重力
    NSMutableArray *tempArrM = [NSMutableArray array];
    [tempArrM addObject:self.bird];
    [tempArrM addObjectsFromArray:self.ices];
    UIGravityBehavior *gravity = [[UIGravityBehavior alloc] initWithItems:tempArrM];
    [self.animator addBehavior:gravity];

    // 给鸟和冰添加碰撞
    UICollisionBehavior *collision = [[UICollisionBehavior alloc] initWithItems:tempArrM];
    [collision setTranslatesReferenceBoundsIntoBoundary:YES];

    // 添加屏幕边缘碰撞
    UIBezierPath *path = [UIBezierPath bezierPathWithRect:self.view.bounds];
    [collision addBoundaryWithIdentifier:@"BoundsTest" forPath:path];

    [self.animator addBehavior:collision];

    /**
     UIPushBehaviorModeContinuous,   持续的力
     UIPushBehaviorModeInstantaneous     瞬间的力
     */

    // 给鸟添加推力
    UIPushBehavior *push = [[UIPushBehavior alloc] initWithItems:@[self.bird] mode:UIPushBehaviorModeInstantaneous];
    // 力的方向
    push.magnitude = 5.0;
    push.angle = 2 * M_PI;
    [self.animator addBehavior:push];
}

看一下效果:
技术分享

能简单的实现 这个小游戏,大家可以自己把剩下的功能完善。谢谢

精简版—愤怒的小鸟

标签:

原文地址:http://blog.csdn.net/yi_zz32/article/details/50539820

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!