Questions tagged [xcode5]

Xcode 5 is Apple's integrated development environment (IDE). Xcode 5.0 included the SDKs for Mac OS X 10.8 and iOS 7. *Do not use this tag unless your question specifically involves the Xcode IDE!*

Xcode 5 is an Apple integrated development environment (IDE). This version of Xcode includes the SDKs for Mac OS X 10.8 and iOS 7. It is available free on the Mac App Store and as a downloadable disk image file (DMG) from http://developer.apple.com/xcode

This tag should only be used for questions about the Xcode 5 integrated development environment (IDE) itself, and not for general Mac or iOS programming topics. Use for Mac programming questions, and or for iOS programming questions.

If the question is related to the Xcode IDE in general (not specific to Xcode 5), use the tag.

3988 questions
1
vote
1 answer

Can you change per-file options for a group of files?

I have a nested group of dozens of files (as described in this question), and I'd like to apply some custom build settings to all and only those files. This was trivial in Xcode 3. In Xcode 4, although I couldn't find anything in the documentation,…
abarnert
  • 354,177
  • 51
  • 601
  • 671
1
vote
0 answers

Appengine cloud endpoint messages and iOS Core Data

I have an endpoint message from Google Cloud Endpoint that I would like to persist in iOS Core Data. The endpoint message look like this .h #if GTL_BUILT_AS_FRAMEWORK #import "GTL/GTLObject.h" #else #import "GTLObject.h" #endif @class…
Katedral Pillon
  • 14,534
  • 25
  • 99
  • 199
1
vote
0 answers

identifier expected or '(' for referenced pod(MegicalRecord) IOS xcode

I have error while building project : In pods I have megicalRecords library , and pods are building successfuly but when I build my project I have error as shown in image i.e. Expected Identifier or '('. Can anyone please help what is issue…
Usman
  • 333
  • 3
  • 14
1
vote
0 answers

How to get connection and Tableview work on single project? Xcode

Hello I'am new in Xcode and all kind of programming. I'am trying to compile several projects and methods to create a mac app that connects to MySql database ( not with php, i need it to be more secure) and get the data from the server to a table…
1
vote
2 answers

Should I save my images in Core Data or should I use SDWebImage

I have been developing an app with cloud/server data source. So naturally the process is one thing at a time. So at present, to fill my tables, I query the server which returns an array. The array contains urls to images and then from the urls I…
Katedral Pillon
  • 14,534
  • 25
  • 99
  • 199
1
vote
1 answer

Changing Background Moving Speed

In the gameScene background moving horizontally it's working fine but i want to move background slow and fast according to score increasing, i proceed this way with nstimeinterval changing but nothing i can see change the background moving slow and…
anjani
  • 165
  • 2
  • 12
1
vote
1 answer

Accessing Properties in Objective C

I have changed the variable declarations of the existing class, UserInfoBean.m from instance variables to properties like given below. The commented line are the old piece of code. //Should contain all statics and should be available to…
Devendra Sahu
  • 15
  • 2
  • 7
1
vote
0 answers

Google app Engine integration with IOS

I am developing an app in ios 7 using Google app engine as backend.I followed this link https://developers.google.com/appengine/docs/java/endpoints/consume_ios Our google console project is configured for IOS. But the problem is when i am try to…
Rabby Alam
  • 300
  • 1
  • 2
  • 10
1
vote
1 answer

Xcode 5.1.1 build fail C programming

I am trying to build and run a basic C program in Xcode, but keep getting a "build failed" message. The script is nothing too crazy, just a natural number calculator, there's nothing wrong with the script as I've tested it on an online compiler and…
1
vote
1 answer

Size of subview does not change correctly when device orientation changes

I have a problem with rotating a subview when the device orientation is changed. My situation is: I have root view controller that is declared in //in AppDelegate.h @property MainViewController * myMainViewController; //in AppDelegate.m -…
phuochuynh
  • 11
  • 2
1
vote
0 answers

Can't view sqlite db datas in iPad mini

I developed a iOS Universal app using Sqlite db. I can access the app and it's db in the simulator but when I run the app in the device(iPad mini) it not displays the datas stored in the db. Kindly advice me to solve the problem. Thanks in advance.
iBeginner
  • 249
  • 4
  • 12
1
vote
1 answer

Crash during drag operations in C++/Objective-C application on OSX

I have a large C++ application with some Objective-C mixed in, building with XCode 5. One view in the app has a list of items. Dragging and dropping the list items will work fine for 5 or 10 or 50 times, but eventually the app will crash during…
JohnT
  • 13
  • 4
1
vote
1 answer

LLVM precompile concatenate issue

I concatenate my full app version using these macros: #define MAJOR 3 #define BUILD 432 #define CONCATENATE_DIRECT(s1, s2) s1##s2 #define CONCATENATE(s1, s2) CONCATENATE_DIRECT(s1, s2) #define VERSION CONCATENATE(CONCATENATE(MAJOR, .), BUILD) The…
Coli88
  • 302
  • 2
  • 9
1
vote
1 answer

iOS: Images slide show

Here is my code of slide show of images: -(void)setImage { imageView.image = [UIImage imageNamed:[arrImages objectAtIndex:0]]; [NSTimer scheduledTimerWithTimeInterval:3.0 target:self selector:@selector(changeImage) userInfo:nil…
Bhagyashree mahajan
  • 531
  • 1
  • 6
  • 14
1
vote
2 answers

iOS verify the uiview has change color

I'm trying change background color of UIView. here is my code: UIView *myView = [self.view viewWithTag:21]; [self.view bringSubviewToFront:myView]; myView.backgroundColor = [UIColor yellowColor]; I verified : if ([myView.backgroundColor…
user2924482
  • 8,380
  • 23
  • 89
  • 173