The newest version of Xcode (released Sep. 19, 2012), 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

5
votes
0answers
15 views

Migrating old xcode projects into lattest version

I have problem with memory management and leaks(Potential leak of an object) of old xcode projects.Can i Migrate these projects to new xcode4.5 with Automatic reference counting to overcome the above ...
5
votes
0answers
205 views

Simulator does not show button text

I'm learning to build iPhone apps with XCode 4.5.2 and I noticed something strange. As you can see at the address http://i.stack.imgur.com/purI8.jpg the text inside one of the buttons is not displayed ...
4
votes
0answers
63 views

what does “exited abnormally with signal 9: Killed: 9” mean

How to read error codes which appear in the console? <Warning>: ....... -exited abnormally with signal 9: Killed: 9 <Warning>: ....... -1 err = Bad file descriptor (0x00000009) Here ...
4
votes
0answers
36 views

PayPal Token has not received to proceed this transaction

In iphone app, when checkout the selected cart items with Paypal sandbox test account, I got the Error "PayPal Token has not received to proceed this transaction".Can anyone Clarify whether the error ...
4
votes
0answers
117 views

When iOS simulator starts, is it possible to automatically load the Web Inspector?

I'm using iOS 6 simulator with the shiny new Web Inspector in Safari. Question: Is it possible to automatically load the Web Inspector when the iOS 6 web application loads? I'm using ...
4
votes
0answers
433 views

Xcode 4.5 Automatically changing .xib files

Since I upgraded to Xcode 4.5 I've found that it's automatically removing a section of each xib file I visit. Here is the section: <object class="NSMutableDictionary" ...
4
votes
0answers
514 views

object file format unrecognized, invalid, or unsuitable xcode

I know other similar questions have been posted, but none of those solutions worked for me. Updated to Xcode 4.5.1 from 4.3.3 today. Got this error: ...
3
votes
0answers
190 views

Unable to upload data using fruitstrap (iOS device). Segmentation fault: 11

I am trying to upload data to my app using fruitstrap this way. ./fruitstrap upload --bundle-id com.x.x --file /path/to/data-file.xcappdata/ but I get a "Segmentation fault: 11" error. Does anyone ...
3
votes
0answers
405 views

NSInputStream's NSStreamEventHasBytesAvailable never gets called

I am creating an app similar to WiTap (but to connect many devices) and here is my problem: The application seems to connect the devices (they are displayed in table view controller. The delegate of ...
3
votes
0answers
829 views

Internationalization in xcode4.5 with base internationalization

Im new to internationalization i followed this steps , Clicked the "make localized" on my nib files that needed localization Went to project settings , enabled base internationalization Added ...
2
votes
0answers
56 views

Login API for Prestashop

I am working on a iOS Project in which I am using the prestashop API. Please let me know is there any API for login?
2
votes
0answers
44 views

Why self.frame and self.contentView.frame often differs for UITableViewCell?

I sprinkled NSAssert(abs(self.frame.size.height-self.contentView.frame.size.height)<=1,@"Should be the same"); on various places when creating a UITableViewCell to return. The result often ...
2
votes
0answers
69 views

Reuse variable name when inserting an Xcode snippet

I'm making a snippet to make UILabels faster. In this snippet I really just want to set the variable name once and then use it later when setting the color and background color. How can I reuse what I ...
2
votes
0answers
55 views

allBundles not logging custom Bundles in iOS

Bundle which I created doe not show up. The following code prints out only the Application Bundle, whereas I have added my custom bundle. But this does not Print out with the NSLog. for (id obj in ...
2
votes
0answers
60 views

Localized Storyboard: How to add new content?

I just started to use Localization in my app. I now see that there are multiple "MainStoryboard.storyboard" files, for each language one. I can easily change the text. But what happens when I want ...
2
votes
0answers
49 views

How to recover from changing OS X app name in Xcode?

I'm a newbie using Xcode 4.5.2 on a MacBookPro. I'm working on an app based on AMSerialPort, and wanted to change the app name. In Build Settings>Packaging (project and target) I changed Product Name ...
2
votes
0answers
47 views

cannot use 'precompiled-header' output with multiple -arch options

I have an existing project and I tried to compile it with last Xcode version 4.5.2. When I run it on simulator it works fine, but when I try to run it on iPhone or iPad I got the following error : ...
2
votes
0answers
83 views

Controls disabled after code executed XCode 4.5 iOS 6

I've created an app which uses the following: SLComposeViewController isAvailableForServiceType:SLServiceTypeFacebook SLComposeViewController isAvailableForServiceType:SLServiceTypeTwitter The code ...
2
votes
0answers
1k views

can not install ad-hoc ipa MISValidateSignatureAndCopyInfo failed

I using a CI system to build ipa automatically. Basically I called this command line in build script: xcrun -sdk iphoneos PackageApplication -v $APP -o $Output --sign "$Company_name" --embed ...
2
votes
0answers
230 views

XCode: copy bundle resources on build

In xCode I can add resources (folders, documents) to "Copy Bundle Resources phase". The first time, the resources gets deployed correctly. But after that each time, they don't get updated. I have to ...
2
votes
0answers
171 views

How to change brightness of an Video or Image using UISlider on run time(Camera) in iPhone?

-(IBAction)changeslidervalue:(id)sender { NSUserDefaults *defaults2 = [NSUserDefaults standardUserDefaults]; float values = [defaults2 floatForKey:@"slider_preference"]; NSLog(@"value of slider ...
2
votes
0answers
63 views

grouped tableview in iOS6 not reflecting in older iOS versions

I have started using Xcode 4.5 for a new iPad (split view) project , I have a MasterViewController which is a subclass of UITableViewController. I have made the tableView in xib of this ...
2
votes
0answers
122 views

IOS 6 after suspension of app revert orientation?

On suspension of the app, the landscape view of app is viewing as in portrait mode. Although the app is working fine on one go and ios 5 but show disorder in in ios 6 after suspending the app. I also ...
2
votes
0answers
554 views

Running UIAutomation instruments from command line results in NSInvalidArgumentException

Here is what is happening: I create a brand new "Single View" application in Xcode 4.5.1, build it on the command line using this: xcodebuild -sdk iphonesimulator6.0 clean build ...
2
votes
0answers
72 views

Lost files in xcode after checkout earlier git commit

After I checkout my earlier git commit, I found I lost some files in the project. Then I randomly checkout other commits and then lost more files. I found that I can still see the lost file in ...
1
vote
0answers
14 views

dateByAddingComponents method error

Using NSCalendar and its method dateByAddingComponents:toDate:options: the method sometimes return a wrong value. For instante: NSCalendar *calendar = [NSCalendar currentCalendar]; ...
1
vote
0answers
12 views

Can static libraries be used without dragging the entire project

I've come across many open source projects that provide a static library "project.a". In all I've read online so far about using these static libraries you can't just use the project.a file, you ...
1
vote
0answers
20 views

GPUImageView Integration in my project

What I am trying to do is this. - (void)viewDidLoad { [super viewDidLoad]; NSURL *url2 = [[NSBundle mainBundle] URLForResource:@"NAN" withExtension:@"mov"]; GPUImageMovie *movie2 = ...
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 ...
1
vote
0answers
85 views

Show Contact list on table view of iPhone

I have a view controller where I have an add contact button and a table view. On clicking the add contact button a new view controller opens where there are a few textfields and labels and a ...
1
vote
0answers
66 views

FaceBook Share image set user edit disable

my app that share image on Facebook. that work fine but i want to disable user inter face with post. So user can`t modify My initialText is this possible ? if ([SLComposeViewController ...
1
vote
0answers
13 views

How to access native apps on table view and able to use multiple selections

I am trying to create an app on xcode and I need to use a table view where i can select multiple applications to do a function and i was wondering how to do this, If possible I would like to do this ...
1
vote
0answers
152 views

corebluetooth Reading RSSI error:The operation was cancelled

I'm developing an app using Corebluetooth framework, and connect to a BLE device to get RSSI value. I set a function to read RSSI periodly, the timer code is below NSTimer *timer; timer = [NSTimer ...
1
vote
0answers
504 views

existing instance variable delegate for property delegate with assign attribute must be unsafe_unretained

Getting error that on @protocol TapDetectingImageViewDelegate; @interface TapDetectingImageView : UIImageView { id <TapDetectingImageViewDelegate> tapDelegate; @property (nonatomic, assign) ...
1
vote
0answers
99 views

ios how to get data from webservice with WSDL2ObjC

I am unable to show data in iPhone. Please advise. getdata.h @interface GetDataFromPhoneService_GetPhoneInfoResponse : NSObject { /* elements */ tns2_GetPhoneInfoModel * ...
1
vote
0answers
87 views

“Current Instrumentation Disallows Attach” Instruments 4.5

i want to connect my iPad Safari with Instrument 4.5 installed with Xcode 4.5.2. i was selecting allocations from instruments file menu-->new--> Choose a Template for the trace Document -ios -All ...
1
vote
0answers
72 views

Adding GData Objective-C Client library to xcode4.5 working examples

Where ever i download files on gdata .i'm getting " #import gdata.h " is missing in my files even after i replaced it with some new data files from other library by deleting the existing one in our ...
1
vote
0answers
29 views

I want to build the Xcode in command line by enabling 'Generate test coverage files' and 'Instrument program flow'

I want to build the Xcode in command line by enabling 'Generate test coverage files' and 'Instrument program flow' Since i want to do the code coverage from jenkins i want to set the 'Generate test ...
1
vote
0answers
14 views

Event handling from messages

Can we add an action to the content/smiley in messages(sms) ,which is sent from an app. *My doubt is:*How to or from where we can handle the events/action in messages
1
vote
0answers
187 views

iOS app crash due to Exception 0xdeadfeed !! whats the reason of 0xdeadfeed?

Incident Identifier: 59F8A919-279A-4C9E-9B58-FFFE9C01F9E9 CrashReporter Key: 73755578964009d66f989a2277500f68dc02d973 Hardware Model: iPod4,1 OS Version: iPhone OS 5.1.1 (9B206) Kernel ...
1
vote
0answers
253 views

__NSDictionaryM setObject:forKey:]: message sent to deallocated instance

I m doing XML parsing through NSXMLParser. But when it comes to didendElement of NSXMLParser it crashes sometime and give result sometimes.I couldnot understand where I m going wrong? ...
1
vote
0answers
91 views

Getiing error on Apple LLVM Compiler 3 but no error on 4.1

i created a project on xcode 4.5 with LLVM 4.1, but when i sent it to my friend he gets a lot of errors like declare method errors and other errors, but my project works perfectly om my macbook, of ...
1
vote
0answers
66 views

What is the purpose and function of Xcode's source control “Show Remote Status” menu option?

When working in Xcode on a project that's under git source control, I noticed the following menu item: File > Source Control > Show Remote Status and, when toggling it, it changes to: File ...
1
vote
0answers
106 views

Import Xcode storyboard into MonoTouch project

I've found this: Import GUI design from xCode to Monotouch The above answer doesn't get into segue's or any other details. Here's my issue: I have an Xcode storyboard project which compiles and ...
1
vote
0answers
71 views

Creating A Toolbar Info Button in Interface Builder

I know how to create a toolbar button programmatically using UIButton:buttonWithType: and UIBarButtonItem:initWithCustomView: and supplying UIButton:buttonWithType the argument UIButtonTypeInfoLight. ...
1
vote
0answers
144 views

Xcode 4.5 : Merge two static library ,,, Permission denied

I am trying to merge to static library into one library. Here is the script : rm -rf ${BUILT_PRODUCTS_DIR}/libAggregate.a lipo -create ...
1
vote
0answers
88 views

symbolicatecrash doesn't work because mdfind finds nothing

Running Xcode 4.5.2 on OSX Mountain Lion (10.8.2) I'm trying to symbolicate crash reports but the symbolicatecrash script always fails. I'm not actually interested in the app symbols. I want the ...
1
vote
0answers
68 views

Tableview subtitle add new line

I got a tableview with subtitles. I want to tell the user a bit about the current version of the app. tableData = [NSArray arrayWithObjects:@"Ver. 0.90", nil]; //App version tableSubtitles = [NSArray ...
1
vote
0answers
88 views

Xcode 4.5 callStackSymbol not Symbolicated

I am using NSException's callStackSymbol to log the stack trace of my crash and send it to my server. I am getting this kind of stack trace from my release ipa file and/or the original released app ...
1
vote
0answers
933 views

iOS6 crash <Error>: libMobileGestalt copySystemVersionDictionaryValue

I'm stucked over one week I cant figure it out why my app crashed only in IPAD3 ios6.0.1, all other ipads does not crash, my app uses a lot of memory because it downloads a lot of contents and uses ...

1 2 3 4 5 15