Advertisement
Guest User

Untitled

a guest
Nov 23rd, 2014
164
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. @property (nonatomic, weak) IBOutlet UILabel *blah;
  2. .
  3. .
  4. .
  5. [blah setText:@"Blah"];
  6.  
  7. NSString const* kBlahLabelText = @"Blah";
  8. .
  9. .
  10. @property (nonatomic, weak) IBOutlet UILabel *blah;
  11. .
  12. .
  13. .
  14. [blah setText:kBlahText];
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement