Skip to content

mikaoj/SwiftStick

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

#Description SwiftStickDemo

8 direction virtual joystick for iOS #Usage ##Install TODO: Add installation instructions

###Use Setup view and add the stickview in your view controller

let stickView = SwiftStickView(frame: CGRectMake(50, 50, 250, 250))
stickView.delegate = self
view.addSubview(stickView)

Implement delegate method

// MARK: SwiftStickViewDelegate
func swiftStickView(swiftStickView: SwiftStickView, didChangeToDirection toDirection: SwiftStickDirection, fromDirection: SwiftStickDirection) {
    //Do something with direction
}

#Contribute Help wanted! I'm a programmer, not a designer. So the graphics would sure need a lot of work :) #License MIT License (see LICENSE file)