When I\'m stopped at a break point in Xcode, I can see the value of NSString variables. How can I change them? I can change int or double variables, but not NSString.
(https://stackoverflow.com/users/1202867/n8tr) n8tr's comment from above shows how to do it. You just precede your assignment with "po " like so: po myString = @"my_new_string" and po self.title = @"New Title".