Skip to content

Instantly share code, notes, and snippets.

@btedev
Created March 11, 2010 19:26
Show Gist options
  • Select an option

  • Save btedev/329554 to your computer and use it in GitHub Desktop.

Select an option

Save btedev/329554 to your computer and use it in GitHub Desktop.
@interface MainViewController : UIViewController <UITextViewDelegate>
...
- (void)textViewDidChange:(UITextView *)textView {
int chars = [textView.text length];
countLabel.text = [NSString stringWithFormat:@"%i/140",chars];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment