tags:

views:

67

answers:

1
+1  A: 

How is your myEmailString @property defined? With copy or retain? (You should use copy with NSString objects.) If so, and you're not doing a [myEmailString release] in dealloc, that might be the leak.

Shaggy Frog
DOH!!! Property was retained, but I forgot to add it to my dealloc. Thanks Shaggy!
Alpinista