Created
May 21, 2014 20:11
-
-
Save csmobile/a3215d3f465a4a225107 to your computer and use it in GitHub Desktop.
easy concatenation of strings in iOS
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// NSString *string1 = _textField1.text; | |
// NSString *string2 = _textField2.text; | |
// NSLog(@"contents are: %@, %@", string1,string2); | |
//[NSString stringWithFormat:@"%@%@", string1, string2]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Easy Concatenation of Strings in iOS