Xcode 4 is the main development tool for developing software under Mac OS X, targeting Mac OS and iOS.

learn more… | top users | synonyms

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
0answers
4 views

Background music for IOS app

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
10 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
13 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
86 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
19 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
37 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 ...
0
votes
1answer
41 views

Pass Variable or String from OS X Cocoa App to Applescript

I would like to pass a variable to applescript. For example, I type some words in textfield of a Cocoa-App (not cocoa-applescript app).Then, it will be a variable in Applescript for future use. I use ...
0
votes
1answer
24 views

How to add a subview in drop-down style in a table below each row on row-click event?

How to add a subview in drop-down style in a table below each row on row-click event? Ill add more details: When I click on a row, a subview should be appear in drop-down style below the row where I ...
0
votes
1answer
208 views

iPhone 5 Optimization Requirement

I have submitted my iphone app to itune and got that message as "invalid binary". I got mail from apple is following. Dear developer, We have discovered one or more issues with your recent delivery ...
0
votes
1answer
17 views

When I change the background of my UIButton it resizes

I am looking to change my UIButton background image using a click event but when I do the buttons resize, what can I do to prevent this? The code I'm using is below. UIImage *btnImage = [UIImage ...
1
vote
1answer
27 views

View XCode docset docs from terminal

Is there some tool that can allow me to view an installed DocSet as something like a manpage? Maybe something along the lines of ri in ruby, godoc in Go, etc? I do most of my Objective-C coding in ...
0
votes
1answer
27 views

How to use my own classes as Core Data entities ? [Objective-C] [Xcode]

I'm quite surprised that I haven't been able to find the answer using Google so I hope someone will be able to help ! So here's the stuff : I have created several Objective-C classes. They work quite ...
0
votes
1answer
37 views

Cocoa, output current App path

I am working on OS X application. In the code, I would like to output a path of the current Mac OS App to a variable for future use. So later I could read the files in the same folder. Could anyone ...
0
votes
1answer
35 views

How to find a file in the Xcode navigator

I'm looking for the location of a file in my Xcode navigator. I know where the actual file is in my directory, but not what group it has been added to in the Xcode group structure. In other words, I ...
-4
votes
3answers
70 views

how come the delete statement in c++ does not delete the value of the pointed dynamic array [duplicate]

How come after the below code is executed, *p is still equal to 100? I would think that this should result in some sort of run time error because p is no longer pointing to the dynamic int variable? ...
0
votes
0answers
9 views

In an Xcode4 plugin, how does one add a pane to Xcode's preferences?

The Code Pilot Xcode plugin adds its own preference pane to Xcode's preferences, but none of the open-source Xcode plugins I've looked at have preference panes. How do I go about adding a preference ...
1
vote
0answers
43 views

xcodebuild workspace and scheme

I am a little confused as to what happens with the xcodebuild command line tool when you specify a workspace and scheme. I understand how a configured scheme works in the XCode IDE GUI. The build ...
0
votes
0answers
26 views

If statement, UISwitch in one view and UIlabel in another. Can't figure out how to link them together

I am making a map if you will of inventory in a warehouse. If the item isnt there you touch the switch and it flags you to reorder the item. I obviously have all of that woking fine. My problem is ...
0
votes
1answer
20 views

My CGFrame does not display

I'm trying to build an example of using CGFrame using the code below - (void)viewDidLoad { [super viewDidLoad]; CGRect newFrame = [note_view frame]; if ...
0
votes
1answer
10 views

CALayer Troubles when loading an image from a UIImagePicker

I have a UIViewController with a UIImageView (imageView), and I'm defining several layers that will be nested in the imageview as follows in viewDidLoad: //container layer - the very top layer ...
-6
votes
0answers
42 views

How many days Apple.Inc will take to provide Enterprise [closed]

Can any one tell me how many days Apple.Inc will take to provide Enterprise license. Thanks in advance. Vinay
0
votes
1answer
35 views

Xcode is not using 'Header Search Path' to find my header files

I have just downloaded and compiled curl. In my /usr/include folder I can see folder, 'curl' and I can see that I do, indeed, have '/usr/include/curl/curl.h'. However I cannot talk XCode into looking ...
0
votes
1answer
28 views

Trying to get Weekday using NSDateComponents but weekday always the same

I'm trying to obtain the day of the week using the code below with a variable NSString. Whatever value I use the weekday always comes back as 2. What am I doing wrong? NSDateFormatter *dateFormatter ...
0
votes
1answer
39 views

.framework product is red no matter what

I'm trying to add this framework to a project. I have followed these instructions to the letter: Add SocketRocket.xcodeproj as either a subproject of your app or in your workspace. Add ...
1
vote
2answers
42 views

One segue identifier used between two UIViewControllers for multiple UITableView cell data transfer?

In this case, I am assigning values below to stringToDisplay and want to send them to SegViewController, which also retains stringToDisplay. Do I need to use cell.textLabel.text here with ...
1
vote
1answer
28 views

Xcode 4 target build setting “Skip install”. What is it?

The tile basically says it all. I'm developing a mac app which has the normal app target, but also has two more command-line tool targets whose products are copied to the app when building. I ...
0
votes
1answer
75 views

CocoaPods - removed pod also removed framework, getting warning

I had a podfile that looked like this: platform :ios, '6.0' xcodeproj 'NetApp.xcodeproj' pod 'AFNetworking' pod 'TTTAttributedLabel' pod '[x]' Decided to remove pod '[x]' from my podfile, I then ...
0
votes
0answers
40 views

How do I get variable result in this circumstances with xcode?

It's very frustating. I just want to get the value of self.strID. I did: (lldb) po _strID error: warning: Stopped in a context claiming to capture an Objective-C object pointer, but 'self' isn't ...
0
votes
2answers
14 views

To distribute an iOS application in a no of devices

I have developed an application using Objective C with Xcode 4.3.2 as front end and SUP 2.1.3 as middleware.I have a distribution profile with me and I have successfully run my application in an iPad. ...
0
votes
1answer
17 views

UIGestureRecognizer Issue: trying to navigate backwards

Trying to make it so if the user swipes left, the app will navigate backwards. Lately the only success I've had is if I specify the UITableView; if a cell is already selected and then a swipe occurs ...
0
votes
1answer
13 views

“Beyond bounds” error in working with NSMutableArray

Trying desperately to find why it is that when I select a cell in my tableView and then scroll the table up and down when the cell is highlighted that the app crashes. It gives me a -[__NSArrayM ...
0
votes
0answers
29 views

Delegate method does not seem to get to object from delegator, Objective-C

I have a class called Request Processor that basically takes in a request object that has all the details that are necessary to perform a request, it then returns a response via an async block, now ...
0
votes
0answers
27 views

“the document could not be saved. you don't have permission” while saved the document into xCode

There is something wrong with my xCode. As I make a new user in my mac and copy all the document and project into new one. But when I open project into xcode and try to save then xCode will following ...
0
votes
1answer
66 views

Xcode 4 file input/output, command line tool C++

I'm trying to figure out where to save multiple .txt files so that i can have a command line tool project in Xcode read directly in from them while running it. I understand that Xcode compiles ...
0
votes
1answer
62 views

Undefined symbols for architecture i386: “_OBJC_IVAR_$_UIViewController._view”, referenced from:

I've been looking through countless posts about this error: Undefined symbols for architecture i386: "_OBJC_IVAR_$_UIViewController._view", referenced from: -[ViewController viewDidLoad] in ...
1
vote
2answers
103 views

To transfer a .ipa file into iPad by using windows machine

I am very much new to iOS development.I am working in native iOS development with Objective C as front end and SUP 2.1.3 as backend.I have successfully deployed an application in iPad by connecting ...
0
votes
1answer
33 views

iOS- instantiateViewControllerWithIdentifier with out navigationBar

i have a navigation controller with navigation bar define in it. i want to use with that method: instantiateViewControllerWithIdentifier without the navigationBar (just for specific screen, for all ...
6
votes
3answers
97 views

How to 'Build & Run' on multiple destinations at once in Xcode 4?

How can one run a project on multiple destinations (say, iPhone, iPad and iSimulator) at once? There are 2 related questions: Xcode 4 - One Click Build to Multiple Devices? Run on simulator and ...
1
vote
0answers
15 views

Pausing and resuming AU Graph (X-Code)

I am having problem with pausing and resuming audio file using AU Graph on X-Code. The code I am using is: region.mStartFrame = sample frame. This should stop the audio at some point and after ...
0
votes
1answer
59 views

Core Data v SQLite

I have to write an app which shares data with an existing app. If I use SQLite I assume I can open the same table that is used by my original app and update the data, so both apps can share the data. ...
0
votes
1answer
137 views

Using Interface Builder in Xcode 4.6.2

I have just updated my Xcode to the latest version and the IB is quite different from the version I used before. I've created some IBOutlets and whereas before I could drag from the Files Owner to the ...
-2
votes
0answers
56 views

not able to install xcode460417218a.dmg ie. xcode 4.6.0 [closed]

I have downloaded xcode460417218a.dmg that ie. 4.6.0 xcode version from apple website, after the download completed. I tried to install SDK, But when i double clicked on it i got small pop up stating ...
0
votes
1answer
66 views

How to add animation to scatter graph using core plot?

I am using core plot library to display scatter chart in my app i display the scatter chart in my app from tutorial http://www.raywenderlich.com/13271/how-to-draw-graphs-with-core-plot-part-2 now i ...

1 2 3 4 5 112