I attached a NSLog
, witch shows text I do not understand.
When you pass an object to NSLog
, it asks the object for a description of itself (using the description
or debugDescription
properties) and then logs that. So the exact output you get depends on what type of object you pass in. And it’s hard to say what that’ll be because you’ve not shared any info about the types of object you’re using or the output you’re seeing from NSLog
.
Share and Enjoy
—
Quinn “The Eskimo!” @ Developer Technical Support @ Apple
let myEmail = "eskimo" + "1" + "@" + "apple.com"