Skip to content

JavierQuerol/JAQDiceView

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

30 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

JAQDiceView

Click play to watch the video

Video

Version License Platform GitHub Issues

Usage

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];
}

@end

Requirements

iOS 8 (SceneKit works on >=iOS8)

Installation

JAQDiceView is available through CocoaPods. To install it, simply add the following line to your Podfile:

pod "JAQDiceView"

Contribution

Feel free to contribute

Author

Javier Querol

Twitter Email

License

JAQDiceView is available under the MIT license. See the LICENSE file for more info.

About

Roll the dice with SceneKit for iOS 8

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Contributors