Xcode is Apple's integrated development environment (IDE). This tag should only be used for questions about Xcode itself, and not for general Mac or iOS programming topics. Use [cocoa] for Mac programming questions, and [cocoa-touch] or [ios] for iOS programming questions.
0
votes
0answers
2 views
Code sense's Fix it feature have issues
Currently I'm working on an iOS application in which I need to read the data to a structure object. For that I did the following code:
- (TipData)decode:(const unsigned char *)receivedData ...
0
votes
0answers
11 views
iOS 7 - no provisioned ios devices are available
I have installed iOS 7 on my iPhone 5 and the Beta Version of Xcode 5 on my mac.
When I want to run an app on my iPhone, Xcode says:
"no provisioned ios devices are available with a compatible iOS ...
0
votes
0answers
5 views
UIImage not being displayed in UIImageView on iPhone5, yet works in simulator
I am relatively new to iPhone development, but have been a windows programmer for 20 years+.
I was recently asked to develop an app that would read external sensor data, create an in-memory heat-map ...
0
votes
1answer
12 views
add verticle flexible space between UIButton in iphone app on ios 4.3 or more
i have 12 UIButton in a UIView lineup as 2 buttons on each horizontally, these buttons can be hidden or shown dynamically according to availability of information.
The problem is that when a button ...
0
votes
0answers
11 views
Using framework header files in XCode for c++ project
Im having trouble to use Gecode (http://www.gecode.org/download.html) framework for my project.
I downloaded and installed the framework. Now it can be found under
...
0
votes
1answer
12 views
xcode 4.6 autolayout doesn't right align view to scrollview
I'm using iOS 6 auto layout.
I have the portrait mode created with Interface Builder.
I have a UIScrollView inside the UIView (Controller class view). I set two labels: one is right aligned to the ...
0
votes
0answers
10 views
Great delay to continue autoplay in MPMoviePlayerViewController
Peace, Jesus loves you.
My problem is the following: managing properly the app states.
I have several xibs implementing MPMoviePlayerViewcontroller. The light (that weight around 100kb)looping videos ...
0
votes
2answers
24 views
Search String in NSDictionary store in NSMutableArray
I am trying to search a String in NSDictionary stored in NSMutableArray
for (int k = 0; k < [onlyActiveArr count]; k++) {
NSString *localID = [onlyActiveArr objectAtIndex:k];
...
0
votes
0answers
8 views
XCode not generating link map file
I use link maps that building in XCode should generate but on my machine it works but on the build machine, which is what I need it on, it doesn't.
As far as I can tell, the only difference is that my ...
0
votes
0answers
13 views
EXC_BAD_ACCESS cocos2d - box2d
I am throwing an object (box2d) but its giving me error on CGRect of that object when i am trying for collision detection. see below image
and this is how i am creating object body
-(void) ...
0
votes
1answer
11 views
Use Existing database with SQLCipher
Is it possible to open an existing SQLite database with SQLCipher?
Until now, I was managed only to create a new database using SQLCipher in order to work with it.
Thanks!
0
votes
0answers
21 views
Timer resetting
I have this code form Cocos2d template and in this code it should make a working timer but it resets after one second and i can't see the problem. Can someone point me in the right direction or help ...
1
vote
0answers
12 views
Making XCode project inherit child project settings
I have a number of XCode projects which are libraries for a game (Core, Renderer, IO, etc). These library projects have their own library dependencies, e.g. Renderer relies on OpenGL. Whenever I add ...
0
votes
1answer
5 views
zooming on Mapview Crashes the app on iOS6
i am using mapview. when i zoomin on map it shows did recieve memory warning and crashes the app in iOS 6 devices .but its working fine in below versions. Its taking more memory when i zoom in but ...
0
votes
0answers
6 views
Call to CFURLCreateFromFileSystemRepresentation sometimes fails
I have an application that loads in a bundle and in doing so I call CFURLCreateFromFileSystemRepresentation before CFBundleCreate: -
bundlePackageURL = CFURLCreateFromFileSystemRepresentation(
...