The October 2011 release of Xcode, an integrated development environment (IDE) developed by Apple Inc. Xcode is used to product software applications such for Mac OS X and iOS.

learn more… | top users | synonyms

-2
votes
2answers
36 views

Local declaration of 'textField' hides instance variable

-(BOOL) textFieldShouldReturn:(UITEXTField *)textField { [textField resignFirstResponder]; NSLog(@"text === %@",textField.text); NSString *str = ...
0
votes
0answers
26 views

Combining C++11 and TR1-dependent code in OSX?

I have a C++11 project that uses Google Test, and it builds great in Linux. On a Mac, I am having more difficulty integrating it into my code base. The issue seems to be that while my code uses C++11, ...
-1
votes
2answers
15 views

changing the size of the popover controller when pushing navigation view controller in popover on iPad

I am new in ios developement.I have a main viewController having navigation items while i tap navigation item popover viewcontroller appears fine and gettig exact contentSize For View In ...
1
vote
2answers
40 views

Taperecorder wheel animation is not working after the Home button is pressed

I am new in ios developement.I'm implementing Taperecorder project, in which i have some CABasicAnimations used to rotating wheel while recording audio and playing.Everything working fine(recording ...
0
votes
1answer
18 views

OpenGL error in cocos2d

glDisable(GL_TEXTURE_2D); glDisableClientState(GL_COLOR_ARRAY); glDisableClientState(GL_TEXTURE_COORD_ARRAY); _world->DrawDebugData(); // restore default GL states glEnable(GL_TEXTURE_2D); ...
0
votes
0answers
7 views

How can I use the G++ array_allocator with XCode G++ 4.2.1?

In the following, bt_ustring.h pulls in bt_us_char_traits, which is a set of simple traits that work fine with basic_string<BT_Char16, bt_us_char_traits>. When I try to use UString from this ...
0
votes
0answers
20 views

Facebook Integration with XCode 4.2

I have searched a lot of tutorials about integrating Facebook in IOS app, but unfortunately didn't find a one for XCode 4.2 with IOS 5, developers.facebook gives tutorial for XCode 4.5 but for some ...
2
votes
1answer
52 views

NSTask with long output (OSX)

I've been digging for an answer for a long time but I never get to a working code. I have a code that uses dd to generate a file. Sometimes it takes a few minutes depending on the size and I thought ...
0
votes
1answer
26 views

Strange Error When including Objective C header in Command Line App

I am creating a simple command line app that uses Core Foundation, so from what I understand, that means I can use Objective-C. The problem is, as soon as I include my Objective-C header, I get 19 ...
1
vote
0answers
30 views

xcode 4.2 ctrl-drag actions outlets

I am following a very easy tutorial "My first iOS app" by apple on xcode 4.2 sdkiOS5. According to the tutorial, I am supposed to ctrl-drag a button, a text field and a label into the implementation ...
0
votes
0answers
11 views

PDF reader preview display first n number of page only Viewer

I am new in ios developement.I am currently developing pdf reader.it is working fine everything except preview.I have added preview button .i need to display when i tap the preview button display the ...
1
vote
1answer
79 views

iOS Simulator could not find the SDK, SDK may need to be reinstalled

Here I am stuck in another problem,am working on an iOS Application today and as i run my Application for iPhone 5.0 Simulator got some weird issue on that simulator only. There were two window pop ...
1
vote
1answer
48 views

XCode 4.2 with multiple Default-568h@2x.png

I thought this should be asked but turned out it hasn't been. So my question is: I have a project which generate a series of products, in old XCode I specified loading image, i.e. the Default.png ...
0
votes
1answer
106 views

NSSearchPathForDirectoriesInDomains NSUserDomainMask

Using URLConnection I am downloading a file from a url and storing that data to file in documents directory. When I receive response, when the didReceiveResponse: method called, I create file and move ...
3
votes
0answers
59 views

Video Recording with zoom in/out functionality [closed]

Is there any framework in iOS which provides the feature to record a video with zoom in/out functionality.I tried with AVFoundation framework but didn't get any success. I am using the following ...
0
votes
4answers
64 views

Simple Delegate Between View Controller and UIView Isn't Working

So I am using a simple delegate to access a function from a main view controller when a button is pressed on a subview that is generated as an overlay on top of the main view. For some reason the ...
2
votes
2answers
1k views

Command Line Tools for Xcode 4.2

Where can I download Command Line Tools for Xcode 4.2 (Snow Leopard)? It's not in https://developer.apple.com/downloads/index.action I need it to develop Titanium Android Module. Any ideas ?
1
vote
1answer
52 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
0answers
19 views

How To Stop Recording Music by Gracenote SDK in iOS

Currently i'm using "GN_Music_SDK_iOS" SDK in my iPhone App.I just started the recording music by "[GNOperations recognizeMIDStreamFromMic:responseObject config:config];" method, then it is gieving ...
1
vote
0answers
20 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 ...
10
votes
3answers
196 views

How to change the skin color of face from the source image in ios?

MY code: How to manage RGB value for differet shades of face,and how to apply? this code will change the color of face along with hair,but i want 1.only face to be colored excluding hair. ...
0
votes
2answers
78 views

Removing unwanted characters from json response

I am trying to load data from a json response stored in an NSArray into a tableview. json: "fulltime": [ 2, 2 ], Above is the json but when I display to screen it looks like ...
0
votes
0answers
79 views

Twitter integration with ios using oauth with application only authorization?

I am working on native ios app which requires twitter integration.I want to fetch the tweets and replies of some third person without asking user to login.It was all possible in Rest API1.0 but now we ...
0
votes
0answers
14 views

MPL Library issue on iPod 4.2.1. version

My iPhone app contains a PayPal MPL library and it works on my iPhone device and iPod( Ver 4.0) .But Pay pal MPL library initialization failed in iPod device( Ver 4.2.1) while creating APP file using ...
1
vote
1answer
34 views

Xcode 4.2 does not commit files?

I have Xcode 4.2 and I was working ona a project, that was commited previously with - let;s call it - place A. Then I copied it on my disk to another place, made modifications and now I imported via ...
0
votes
2answers
96 views

NSObject call to self gives XCode error

I have a class WebServices that inherits from NSObject. I am using xcode4.2 and ARC turned on. When I created the class, there was no other method in the NSObject lie viewDidLoad or init. The issues ...
0
votes
1answer
37 views

Xcode change to app appears in simulator but not on phone

I have been creating an app and deploying it to my device perfectly. Today I added some images to the app but only one or two images show up on the device but all work perfectly on the simulator. I ...
1
vote
1answer
49 views

iOS : Xcode Crash when configure SVN

At the time i Was checkout and clone project with local file path in my XCODE is crash. When i enter file path "file:///iOS/svnProject" in location field xcode is crash please help for the same ...
0
votes
0answers
32 views

Getting ALAssetLibrary url from CoreData for TableView

I am dealing with text and Images in a tableView app. User creates text / adds images to attributes in a database which are then displayed. I cannot get the saved ALAsset URL in my DB to an ...
0
votes
0answers
43 views

Problems when using XCode 4.2 with any PhoneGap version

I'm trying to use several versions of PhoneGap to run XCode 4.2 in Snow Leopard (10.6.8), but the most part of versions that i tried doesn't work, and it generates many kinds of errors. Is there ...
0
votes
0answers
73 views

Passing a value from UIViewController class to UIView class in storyboard

I have made two class one for UIVIewcontroller & one for UIView which is already subview of UIviewcontroller,my classes is same as: Passing a value from UIViewController to UIView but i am not ...
1
vote
0answers
18 views

work in .xib file not saved

when im doing work in .xib file and after finishing i tried to save it but it continuously showing the message that the document could not be saved.Please help with this
0
votes
0answers
66 views

app crash on ipad but work fine on simulator

app crash on ipad device .Hai ios developers, i am new in ios. single app developed by me that was working fine on simulator. in starting stage working fine on ipad suddently the app will crash. what ...
2
votes
2answers
371 views

Need to convert iOS 5.0 App to iOS 4.3.3

I am developing my app in iOS 5.0 but i also want to convert it to iOS 4.3.3. My Problem is that i get no compiler warnings or error when i install my app in iPhone 3GS(iOS 4.3.3). But app crashes ...
0
votes
1answer
55 views

How to dimiss a UIAlertView when tapping anywhere on the window

I am opening alert popup on click button which is working fine the code is UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"PopUP Title" ...
0
votes
0answers
21 views

xCode not able to provision the application

Hi I am completely new for iOS developement, I have created my phonegap based project in xcode 4.2 and I want to release the app for Ad-Hoc distribution. But I am not able to provision the ...
0
votes
1answer
46 views

How to sandbox my application in Xcode 4.2?

I'm using Xcode 4.2. I have created an iPhone application in which the user will be able to play video by selecting an input file. While running on simulator I've just specified the path of the input ...
0
votes
1answer
76 views

Xcode 4.2 + iOS6 = Interface Builder error

I am trying to use the new iOS6 SDK with an old version of Xcode, 4.2. And I really need to be this way. I have followed this instructions: http://stackoverflow.com/a/9621226/987480 Everything ...
0
votes
1answer
24 views

Can't initialize RMConnectCenter of RenRen SDK

I tried to make Renren iOS app along with SocialPlugin docs. http://wiki.mobile.renren.com/en/index.php/Social_Plugin_Download I made AppDelegate belows. But every time I invoke app, it failed at ...
0
votes
0answers
51 views

How to add videos in document directory without replacing the previous ones in Xcode

i am making a video app in which m storing the captured video in document directory. i want to save at most 10 videos.whenever i run my app it should start from where it left in the document directory ...
-2
votes
3answers
108 views

Paypal integration in ios [closed]

In my app,i am trying to integrate the paypal and creditcard.Anybody know the methods to integrate these things.please guide me if you know the ways to integrate the paypal and creditcard payments in ...
0
votes
0answers
26 views

How do I send a terminal command to xcode in a textbox or label

I have created an interface within xcode and would like to send the following terminal command to a label or textbox when a button is pressed. df | grep /Volumes/*_Home* | awk '{print $6}' I have ...
0
votes
2answers
132 views

UIButton Bug? (Xcode Version 4.6 (4H127))

1st: Xcode Version 4.6 (4H127), simulator 6.1 So... i do the following. My button (inherited from UIButton) loaded from nib. Then i've set image to it for UIControlStateNormal. I've got something ...
0
votes
2answers
73 views

Remove xcode4.2 after installing xcode4.6

In the last step of installing xcode 4.6, it asks if you want to remove previous version xcode 4.2. Unfortunately I forgot to do that because I hit proceed button too soon. The UI hint is not ...
0
votes
2answers
169 views

UIPickerView NSInvalidArgumentException', reason: '-[__NSCFString superview]: unrecognized selector sent to instance

I am a rookie with Objective C and Xcode and am trying to learn one step at a time. I have been scratching my head on a particular issue for days and am having a very hard time finding a solution. I ...
-2
votes
1answer
133 views

New to Xcode how to create a class [closed]

Hi all I have currently started using xcode and objective C and I just want to know how to create a specific class within my program.
0
votes
0answers
7 views

State of accessory checkmarks in SBTableAlert

how to save the state of checkmarks so that even if user close the application the state should be shaved and in the next launch of application checkmark should be shown using SBTABLEALERT
0
votes
0answers
32 views

XYPIE Charts Issue in XCODE

I am using the XYPIE charts,getting values through web services.I got one issue when no. of slices becomes decrease some slice layers are missing. You can reproduce the same issue if you can add ...
0
votes
1answer
39 views

Should I specify any path to access the header files in Xcode?

I have the source code for a video decoder. The code was executed without any problem on the MAC terminal. Now, I need to port it on iOS. The source code has around 20 source files and 40 header ...
1
vote
2answers
268 views

How to set path for 'Header Search path' when adding 3rd party library to iPhone app

I want to add a 3rd party library Speech-To-Textto my Xcode project. I just drag xcodeproj file in my iPhone project.Then I did follow steps like Target Dependencies,Link Binary with libraries and set ...

1 2 3 4 5 42