From 8d3a6d88febad6bf3d87cd9fcc2864fe28f595fe Mon Sep 17 00:00:00 2001 From: Tito Ciuro Date: Wed, 16 May 2012 15:17:05 -0700 Subject: [PATCH] minor changes to correct text formatting --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index de4f31a..25504dd 100644 --- a/README.md +++ b/README.md @@ -4,8 +4,8 @@ A TweetBot-like notice component for iOS.
![Alt text](http://cloud.github.com/downloads/tciuro/NoticeView/screenshot.png) -
-
+
+
## Usage @@ -14,17 +14,17 @@ A TweetBot-like notice component for iOS. ### Examples -- To display a small error notice: +To display a small error notice: WBNoticeView *nm = [WBNoticeView defaultManager];
[nm showErrorNoticeInView:self.view title:@"Network Error" message:@"Check your network connection."]; -- To display a large error notice, make the text long enough to wrap to another line. Only two lines are supported. If the text doesn't fit in two lines, an ellipsis will be appended at the end of the second line: +To display a large error notice, make the text long enough to wrap to another line. Only two lines are supported. If the text doesn't fit in two lines, an ellipsis will be appended at the end of the second line: WBNoticeView *nm = [WBNoticeView defaultManager]; [nm showErrorNoticeInView:self.view title:@"Network Error" message:@"Check your network connection. Twitter could also be down."]; -- To display a small success notice: +To display a small success notice: WBNoticeView *nm = [WBNoticeView defaultManager]; [nm showSuccessNoticeInView:self.view message:@"Link Saved Successfully"];