Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Storyboard won't update in simulator

I have a working app in Xcode, however when I try to build and run it the simulator displays an older version of the storyboard I was working on. I had changed some of the design on the storyboard but this does not reflect in the simulator, nothing is updated.

Does anyone have any ideas?

like image 424
user1892540 Avatar asked Feb 01 '13 14:02

user1892540


People also ask

How do you refresh a storyboard?

Open your storyboard (make sure it is in the active tab), then uncheck Editor > Automatically Refresh Views. This will stop Xcode from automatically building the storyboard every time you change your code. You can enable it back as needed when you are done with your code, to see the updated visual preview.

How do you refresh iPhone simulator?

Selecting Reload (or pressing ⌘ + r in the iOS simulator) will reload the JavaScript that powers your application.

Does iOS simulator simulate performance?

The simulator does a really lousy job of indicating app performance. In fact it doesn't try. For most things the simulator is much, much faster than an iOS device. It runs your code on an x86 processor, which is much faster than the ARM and has many times more memory.


1 Answers

  1. Delete the App on the simulator.

  2. Clean

  3. List item

  4. Build & Run

Use NSLog(@"") in your controller to check code execution.

like image 86
T0m_Twt Avatar answered Oct 13 '22 21:10

T0m_Twt