Skip to content

Instantly share code, notes, and snippets.

View btedev's full-sized avatar

Barry Ezell btedev

  • Guardian Trusts
  • St. Petersburg, FL
View GitHub Profile
@interface MainViewController : UIViewController <UITextViewDelegate>
...
- (void)textViewDidChange:(UITextView *)textView {
int chars = [textView.text length];
countLabel.text = [NSString stringWithFormat:@"%i/140",chars];
}