Click play to watch the video
To run the example project, clone the repo, and run pod install from the Example directory first.
Don't use the simulator, always use a device, as it uses a lot of GPU, performance is really bad on simulator
- Add a JAQDiceView to your ViewController
- Implement the JAQDiceProtocol
@interface JAQViewController () <JAQDiceProtocol>
@property (nonatomic, weak) IBOutlet JAQDiceView *playground;
@end
@implementation JAQViewController
- (void)diceView:(JAQDiceView *)view rolledWithFirstValue:(NSInteger)firstValue secondValue:(NSInteger)secondValue {
NSLog(@"%li",firstValue+secondValue);
}
- (IBAction)rollDice:(id)sender {
[self.playground rollTheDice:sender];
}
@endiOS 8 (SceneKit works on >=iOS8)
JAQDiceView is available through CocoaPods. To install it, simply add the following line to your Podfile:
pod "JAQDiceView"
Feel free to contribute
Javier Querol
JAQDiceView is available under the MIT license. See the LICENSE file for more info.
