This code should copy the string to the generalPasteboard, as the [[UIPasteboard generalPasteboard] string] object, but the method causes the program to terminate.

- (void)copyResultToPasteboard {
    NSString *message = self.resultTextView.text;
    [UIPasteboard generalPasteboard].string = message;
    [message release];
}

I think it's something to do with format, seeing as the method works if the message is set to a literal string, but resultTextView.text is just an NSString... I don't fully understand, can anyone help?

link|improve this question

80% accept rate
feedback

2 Answers

up vote 2 down vote accepted

Are you sure that resultTextView.text is returning a copy of the backing store, and not the actual NSString* used to store the data? Looking over the Apple documentation, it seems likely it's just returning the internal pointer (unretained). Calling release on a string being used by the UITextView class could cause this behaviour.

link|improve this answer
Taking out [message release] works great; cheers. – Boz Sep 7 '09 at 13:23
feedback

You're sending -release to an object which you didn't (or at least, which it doesn't appear you have, from the snippit) first -retain, +alloc or get through -copying another object.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.