Xcode 4 is the main development tool for developing software under Mac OS X, targeting Mac OS and iOS.
0
votes
1answer
21 views
UIViewController being pushed down on screen when displayed using insertSubview
Having a bit of a problem, here's the breakdown:
My AppDelegate uses as it's rootViewController a view controller. This view controller's purpose is to swap a couple of other view controllers in and ...
0
votes
1answer
11 views
xcode - how do I remove an item from an array within an array?
I wish to remove an item from in an array that is nested in another array but try as I might I can't get the code to work.
This is what I have in my code:
NSArray *array1 =[[NSArray alloc] ...
0
votes
0answers
4 views
Xcode - Restore Snapshot - File does not exist in restore location
When I tries to Restore Snapshop, the right pane instead of highlighting the changes, comes up with the message 'Files does not exist in restore location'. Then, even i clicks 'restore', nothing ...
0
votes
1answer
25 views
Detect if music is playing or not and turn switch in off or on
I am creating this app were there is background music playing, but I want it so the user can stop the music with a UISwitch if they dont want background music. I already have the code working for the ...
0
votes
0answers
14 views
Linking and compiling armadillo in Xcode 4
I am a Mac OS X 10.8.3 user (Mountain Lion). I have download armadillo and installed it in OS X as per README.txt instructions. It compiles fine by typing:
g++ ... *stuff* ... -O2 -larmadillo
in ...
0
votes
0answers
12 views
Trouble setting up arrayController with NSTableView and Core Data
I am trying to set up multiple tables in a single window along with a core data model with related entities. Some of which have dictionaries and arrays as attributes. I have turned to manually ...
0
votes
0answers
16 views
<Error>: GeezaPro: FT_Load_Glyph failed: error 6
I have two view controllers in my application, when I use (segue) to push to the second view controller (detail view controller), I face this error :
: GeezaPro: FT_Load_Glyph failed: error 6.
this ...
0
votes
0answers
14 views
Can not resolve linker errors after Xcode crash
Hej,
after Xcode (4.6.2) crashed on compiling I get errors like:
Undefined symbols for architecture i386:
"___objc_personality_v0", referenced from:
[...]
"__objc_empty_vtable", referenced from:
...
0
votes
0answers
7 views
How to apply .strings changes to a xib file and vice versa
In my OS X app I have currently 2 languages and enabled base internationalization for that. So, in my resource folder I have 3 lproj subfolders: base, de, en. base contains the xib file (say, ...
1
vote
1answer
89 views
iOS crashes with EXC_BAD_ACCESS(code=1)
I'm new to iOS, so don't be shy about pointing out any of my code that looks completely idiotic :)
Here goes...
Two view controllers - OrderViewController and LineItemViewController - when the user ...
0
votes
1answer
19 views
Global Hotkeys UI-control for program settings
In my first MacOS desktop program I need to be able to put my own global hotkeys for certain actions.
In many other programs I saw a special UI-control for these purposes, like that:
I also want ...
0
votes
0answers
21 views
iOS6 XCode4.6.2 Passing Row Number via a Segue
If I pass data via a Seque to another View Controller, e.g.
- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
if ([segue.identifier isEqualToString:@"mySequeIdentifier"]) {
...
0
votes
1answer
22 views
Xcode not copying resource to octests bundle
WTF? Xcode 4.6.2 is refusing to copy one of my resource files to the octest bundle.
These line, from the build log, work:
CpResource AppName/Resources/Domain.sqlite ...
0
votes
1answer
30 views
XCode Key Chain Renew my certificate
Today my First certificate became 1 year old, when i they to run my app on a divice i got this message:
Code Sign error: The identity 'iPhone Developer: ********** (********)' doesn't match any ...
1
vote
2answers
39 views
Adding a subview of one xib file to another xib file in objective c
I have a header view in one of my xib file.I want to reuse this header view in some other views as the header.Can i add this as a subview?Anyone have tried this?I tried with the following code and ...