Hello.
I was following the iPhone SDK Development book, on chapter three we make a table view with a navigation controller, and we can delete or add entries into our table.
When I delete an item from the list its all good, but when I try and add an item my app keeps giving me these warnings.
Code:
This GDB was configured as "i386-apple-darwin".warning: Unable to read symbols for "/System/Library/Frameworks/CoreGraphics.framework/CoreGraphics" (file not found).
warning: Unable to read symbols from "CoreGraphics" (not yet mapped into memory).
warning: Unable to read symbols for "/System/Library/Frameworks/UIKit.framework/UIKit" (file not found).
warning: Unable to read symbols from "UIKit" (not yet mapped into memory).
Basically when I hit the Add button a new view shows up, I can enter some text in a text field and when I hit done it takes me back to the list of items. I can see my name added on the list, but those warnings about the frameworks are thrown at me in the console.
I have tried:
- Reinstalling Xcode and the iPhone SDK
- Cleaning my project, deleting my build directory and the 2 files with my name inside the .xcodeproj file
- Manually remove and add the frameworks to my project again
- Create a new project and re write everything again
And my app still crashes, It's amazing how it still gives me these problems after I have created a new project form scratch.
Any help would be gladly appreciated as this is driving me utterly nuts!