Skip to content

midnightSuyama/Masu-Swift

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Masu-Swift

CI Status Version License Platform

Placeholder for iOS prototyping with Swift

Screenshot

Usage

To run the example project, clone the repo, and run pod install from the Example directory first.

import Masu_Swift

// UIView demo
let masu = Masu(frame: CGRectMake(0, 300, 220, 100))
masu.backgroundColor = UIColor(red: 0, green: 0.5, blue: 0.5, alpha: 1)
masu.text            = "View"
self.view.addSubview(masu)

// UIImage demo
let btn = UIButton.buttonWithType(UIButtonType.Custom) as! UIButton
btn.frame = CGRectMake(220, 300, 100, 100)
btn.setImage(Masu.imageWithSize(btn.frame.size, backgroundColor: UIColor.grayColor(), labelText: "Button"), forState: UIControlState.Normal)
self.view.addSubview(btn)

Category

view.showMasu()

Installation

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

pod "Masu-Swift"

Author

midnightSuyama, midnightSuyama@gmail.com

License

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