Masu 0.1.3

Masu 0.1.3

TestsTested
LangLanguage Obj-CObjective C
License MIT
ReleasedLast Release Dec 2014

Maintained by midnightSuyama.




Masu 0.1.3

  • By
  • midnightSuyama

Placeholder for iOS prototyping

Screenshot

Usage

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

// UIView demo
Masu *masu = [[Masu alloc] initWithFrame:CGRectMake(0, 300.0f, 220.0f, 100.0f)];
masu.backgroundColor = [UIColor colorWithRed:0 green:0.5f blue:0.5f alpha:1];
masu.text            = @"View";
[self.view addSubview:masu];

// UIImage demo
UIButton *btn = [UIButton buttonWithType:UIButtonTypeCustom];
[btn setFrame:CGRectMake(220.0f, 300.0f, 100.0f, 100.0f)];
[btn setImage:[Masu imageWithSize:btn.frame.size backgroundColor:[UIColor grayColor] labelText:@"Button"] forState:UIControlStateNormal];
[self.view addSubview:btn];

Category

[view showMasu];

Installation

Author

midnightSuyama, [email protected]

License

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