Re: [iPhone] Adding a UIView to current view

2010-01-21 Thread Philip Vallone
Thank you Luke, That was it. Thanks, Phil On Jan 21, 2010, at 6:38 PM, Luke the Hiesterman wrote: > Standard first question: did you verify that myBubble is non-nil? > > Another note: it's weird that you do [self.view addSubview:myBubble] when > through the rest of the method you always use

Re: [iPhone] Adding a UIView to current view

2010-01-21 Thread Luke the Hiesterman
Standard first question: did you verify that myBubble is non-nil? Another note: it's weird that you do [self.view addSubview:myBubble] when through the rest of the method you always use self.myBubble. You should stick to using your property. Luke On Jan 21, 2010, at 3:33 PM, Philip Vallone wro