Re: Stale xib files

2013-11-17 Thread Kyle Sluder
On Sun, Nov 17, 2013, at 05:03 PM, Fritz Anderson wrote: > On Nov 17, 2013, at 8:50 AM, Roland King wrote: > > > No I'm not sure that it is. Appstore updates really do blow things away and > > start over. I'm not sure that anything less than that does that. > > Has that changed? At WWDC 2012 (

Re: Stale xib files

2013-11-17 Thread Fritz Anderson
On Nov 17, 2013, at 8:50 AM, Roland King wrote: > No I'm not sure that it is. Appstore updates really do blow things away and > start over. I'm not sure that anything less than that does that. Has that changed? At WWDC 2012 (as I remember), one of the big features of iOS 6 was that so long as

Re: Stale xib files

2013-11-17 Thread Kevin Muldoon
That would be a huge relief. Thanks Roland! On Nov 17, 2013, at 9:50 AM, Roland King wrote: > No I'm not sure that it is. Appstore updates really do blow things away and > start over. I'm not sure that anything less than that does that. > > On 17 Nov, 2013, at 10:33 pm, Kevin Muldoon wrote:

Re: Stale xib files

2013-11-17 Thread Roland King
No I'm not sure that it is. Appstore updates really do blow things away and start over. I'm not sure that anything less than that does that. On 17 Nov, 2013, at 10:33 pm, Kevin Muldoon wrote: > However, isn't the process of updating apps in appstore identical to an > Ad-Hoc distro? For instan

Re: Stale xib files

2013-11-17 Thread Kevin Muldoon
However, isn't the process of updating apps in appstore identical to an Ad-Hoc distro? For instance, I've seen this same issue when distributing apps via TestFlight or even my own server. On Nov 17, 2013, at 9:06 AM, Koen van der Drift wrote: > > On Nov 16, 2013, at 7:33 PM, Roland King wro

Re: Stale xib files

2013-11-17 Thread Koen van der Drift
On Nov 16, 2013, at 7:33 PM, Roland King wrote: > The process of updating apps from the appstore is different from installing > in the sim or copying to the device, it creates an entirely new directory > with the app bundle, installs the new app and then copies the user data over. > > So you

Re: Stale xib files

2013-11-16 Thread Roland King
The process of updating apps from the appstore is different from installing in the sim or copying to the device, it creates an entirely new directory with the app bundle, installs the new app and then copies the user data over. So you shouldn't need to do anything special for your users (as lon

Re: Stale xib files

2013-11-16 Thread Kevin Muldoon
Nice!!! Sent from my iPhone > On Nov 16, 2013, at 4:34 PM, Koen van der Drift > wrote: > > I found a solution (thanks to SO). I moved the view creating code from > viewDidLoad to loadView. And call [super loadView] first. > > - Koen. > > >> On Nov 16, 2013, at 12:54 PM, Kevin Muldoon wro

Re: Stale xib files

2013-11-16 Thread Koen van der Drift
I found a solution (thanks to SO). I moved the view creating code from viewDidLoad to loadView. And call [super loadView] first. - Koen. On Nov 16, 2013, at 12:54 PM, Kevin Muldoon wrote: > I've experienced this as well, switching from xib to code. As far as I know, > a clean install is onl

Re: Stale xib files

2013-11-16 Thread Kevin Muldoon
I've experienced this as well, switching from xib to code. As far as I know, a clean install is only answer. Sent from my iPhone > On Nov 16, 2013, at 12:26 PM, Koen van der Drift > wrote: > > I'm in the process of removing some xibs, and construct my views in the > ViewController. As it tu

Stale xib files

2013-11-16 Thread Koen van der Drift
I'm in the process of removing some xibs, and construct my views in the ViewController. As it turns out, the app in the simulator or my device don't recognize that the xib was removed, and I need to completely reset the simulator, clean my build and build-folder, and then it works. My question