You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On xCode 7.1.1, open a stand alone .swift file not in a project.
typing
let replacement = (fullPath as NSString).
looking for
stringByReplacingOccurrencesOfString
but it is no where to be found.
desired output is:
let replacement = (fullPath as NSString).stringByReplacingOccurrencesOfString(oldName, withString: newName)
The text was updated successfully, but these errors were encountered:
On xCode 7.1.1, open a stand alone .swift file not in a project.
typing
let replacement = (fullPath as NSString).
looking for
stringByReplacingOccurrencesOfString
but it is no where to be found.
desired output is:
let replacement = (fullPath as NSString).stringByReplacingOccurrencesOfString(oldName, withString: newName)
The text was updated successfully, but these errors were encountered: