minor changes to correct text formatting

This commit is contained in:
Tito Ciuro
2012-05-16 15:17:05 -07:00
parent ce3a7f04d2
commit 8d3a6d88fe

View File

@@ -4,8 +4,8 @@ A TweetBot-like notice component for iOS.
<br/>
![Alt text](http://cloud.github.com/downloads/tciuro/NoticeView/screenshot.png)
<br />
<br />
<br/>
<br/>
## 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];<br/>
[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"];