Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I working on a program that uses a splitview. So let me try to explain the interface. LEts say on the first uitableview we have two rows "Dogs and Cats" When i touch dogs a new tableview comes up showing "pitbull" and "labrador". again when i click pitbull a new tableview comes up showing "Name"(thridview.m): when i touch name a uilabel comes up showing "my pitbull name is Avary" on the details side innitalized below

self.lblname=[[UITextView alloc]initWithFrame:CGRECTMAKE(200,200,200,200)];
 self.lblname.text=@"my pitbull name is Avary";
[self.view addSubview:self.lblname];
[self.view setNeedsDisplay];

Now in the thridview.m file in the viewWill disappear method i have this code

-(void)viewWillDisappear:(BOOL)animated
 {
  [super viewWillDisappear:animated];
  [self.detailViewController.lblname removeFromSuperView];
 }

in an effort to not see the label saying that my dog is named Avery when the uitableview is saying "Pitbull" and "Labrador" or i am in the second view Now all this works fine. When i click my back botton the label about the dog name disappears UNLESS when i click the name label twice...then it persist to my other views. Would love if someone could provide some useful insight

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.