Created
November 14, 2013 02:39
-
-
Save satoshin2071/7460424 to your computer and use it in GitHub Desktop.
[ObjC][plist][基本]plistから読み込んだ文字列を改行
This file contains hidden or 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
//読み込んだ際に改行コードがエスケープされてしまうので、置換する | |
myTextField.text = [dbString stringByReplacingOccurrencesOfString: @"\\n" withString: @"\n"]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment