Re: How to get rid of the back button in UIView

2011-12-29 Thread Roland King
[ your uinavigationitem setHidesBackButton:NO animated:NO ] ? On Dec 29, 2011, at 6:35 PM, Alexander Reichstadt wrote: Hi, this might be totally trivial, but all suggestions I found in the docu and on the web failed. I don't want my detail view to show any kind of back button. So from

Re: How to get rid of the back button in UIView

2011-12-29 Thread Roland King
.. or even setHidesBackButton:YES animated:NO .. what's up with me today ... On Dec 29, 2011, at 6:41 PM, Roland King wrote: [ your uinavigationitem setHidesBackButton:NO animated:NO ] ? On Dec 29, 2011, at 6:35 PM, Alexander Reichstadt wrote: Hi, this might be totally trivial,

How to get rid of the back button in UIView

2011-12-29 Thread Alexander Reichstadt
Hi, this might be totally trivial, but all suggestions I found in the docu and on the web failed. I don't want my detail view to show any kind of back button. So from the documentation I came up with the following possibilities: 1. set leftItemsSupplementBackButton to NO 2. set

Re: How to get rid of the back button in UIView

2011-12-29 Thread Alexander Reichstadt
Thanks, this works. On 29.12.2011, at 11:45, lbland wrote: hi- On Dec 29, 2011, at 5:35 AM, Alexander Reichstadt wrote: Please, can someone help? navigationItem.hidesBackButton = YES; ?? ... but maybe your detailed view should be some other type of modal view controller ...