© 1999-2048 dssz.net 粤ICP备11031372号
初始化并设置抽奖位置:
// 初始抽奖界面 KZHLuckView *luckView = [[KZHLuckView alloc] initWithFrame:self.view.frame]; [self.view addSubview:luckView]; // 指定抽奖结果,对应数组中的元素 luckView.stopCount = 1;
block方式获取最终中奖位置:
// 调用block返回中奖结果 [luckView getLuckResult:^(NSInteger result) { NSLog(@"block====& gt;抽到了第%ld个",result); }];
delegate方式获取最终中奖位置:
// 首先调用KZHLuckViewDelegate // 签订代理人 luckView.delegate = self; // 实现代理方法 -(void)luckViewDidStopWithArrayCount:(NSInteger)count { NSLog(@"delegate====>抽到了第%ld个",count); }
...展开收缩