From 1bc047092d12e971d7afa320731f7f2707919126 Mon Sep 17 00:00:00 2001 From: Makoto Chiba Date: Thu, 29 Jan 2015 22:43:55 +0900 Subject: [PATCH] Fix README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 5748ca5..2330a4c 100755 --- a/README.md +++ b/README.md @@ -15,10 +15,10 @@ Or clone this repository and include `QBFlatButton.h` in your project manually. ## Properties -### surfaceColor +### faceColor A surface color of the button. -`@property (nonatomic, strong) UIColor *surfaceColor` +`@property (nonatomic, strong) UIColor *faceColor` ### sideColor A side color of the button. @@ -55,7 +55,7 @@ A border width of the button. QBFlatButton *button = [QBFlatButton buttonWithType:UIButtonTypeCustom]; button.frame = CGRectMake(90, 200, 140, 50); - button.surfaceColor = [UIColor colorWithRed:0.333 green:0.631 blue:0.851 alpha:1.0]; + button.faceColor = [UIColor colorWithRed:0.333 green:0.631 blue:0.851 alpha:1.0]; button.sideColor = [UIColor colorWithRed:0.310 green:0.498 blue:0.702 alpha:1.0]; button.borderColor = [UIColor colorWithRed:0.310 green:0.498 blue:0.702 alpha:1.0];