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
2 answers

How to close a container view

I'am working on an iOS project with xcode 5. I needed to show an option table in a pop-up, hence I used a container view and called it as a pop-up through segue. Now the problem is I want to close (not merely disappear) the container view as soon…
User6391
  • 15
  • 6
1
vote
1 answer

my app creates the /var/mobile/ folder but I can't find it in Finder

My Xcode app creates a document and resource path. Please see the console output below when I print out these two path variables: However, when I try to find this folder in Finder, I'm told the folder doesn't exist. Why?! The code for getting the…
BlueBucket7
  • 185
  • 3
  • 13
1
vote
0 answers

Error writing outside of of the documents directory: error writing to file: Error Domain=NSCocoaErrorDomain Code=4

I'm trying to create/write a pList file out side of the documents directory but I'm getting this error: error writing to file: Error Domain=NSCocoaErrorDomain Code=4 "The folder “spanishPlayground-toys.plist” doesn’t exist." UserInfo=0x618000278200…
user2924482
  • 8,380
  • 23
  • 89
  • 173
1
vote
0 answers

How to purchase more than 10 quantity of one product in iOS In App Purchase

I had implemented consumable In app purchase with credit system. I used 0.99 (tier1) is my based credit then I am multiplying with quantity. The number of credit is calculating dynamically. So that if the number of credit is more than 10, is not…
Ramesh R C
  • 644
  • 7
  • 17
1
vote
1 answer

Reinstalling provisioning profiles in XCode5

I recently was forced to reinstall XCode5 to correct a problem in with Interface Builder. The reinstall corrected the issue but erased my provisioning profiles and now I am unable to test apps on a physical device. From others' suggestions, I went…
Pheepster
  • 6,045
  • 6
  • 41
  • 75
1
vote
2 answers

How to install iPhone 6 and iPhone 6 Plus Simulator in Xcode 5.1.1?

Is there any possible to install iPhone 6 and iPhone Plus Simulator in Xcode 5.1.1 ? And also i want to know, what is the lowest version of Deployment target in Xcode 6 ? Thank You !!!
Arun Kumar
  • 21
  • 1
  • 3
1
vote
2 answers

Change the user picture for Git in Xcode

Is there any way to change the Git user picture for Xcode5? I can change the username and email with command like this: xcrun git config --global user.name 'new_user_name' xcrun git config --global user.email 'new@email.com' But what about the…
Artisan
  • 75
  • 1
  • 8
1
vote
1 answer

iOS: animation with four button rounded

Any one have idea about this kind of animation.above image have four button animated rounded. thanks for advance.
Mitul Marsoniya
  • 5,272
  • 4
  • 33
  • 57
1
vote
1 answer

Xcode: Build fails every time for a simple Hello Word program

Very strange: I am trying to run a simple Hello World program, but Xcode say "Build Failed" I saw in the Log Navigator it say 2 warning and 1 error: Command…
skypirate
  • 663
  • 1
  • 7
  • 13
1
vote
0 answers

Xcode font needed

I am using Xcode 6 for development.Recently while going through the some posts in web,I saw some new look of Xcode.Here I attached screen of that.I am not sure of that font that exist in the Xcode that I mentioned.I want to use that font in…
SURESH SANKE
  • 1,653
  • 17
  • 34
1
vote
2 answers

Linker command failed with exit code 1 Facebook SDK

The errors started to occur as follows after adding the Facebook SDK to my project ("FacebookSDK.framework") ld: 76 duplicate symbols for architecture x86_64 duplicate symbol _OBJC_IVAR_$_BFAppLinkTarget._URL in: …
Yrol
  • 159
  • 4
  • 17
1
vote
2 answers

Cannot find "Foundation" type in Xcode 6

In Xcode 6 it says language instead of type.I'm learning Objective-c from a book and it asks me to make a project under the Foundation type. The book is made for Xcode 5 but It should work with Xcode 6. Where do I find "Foundation" framework?
Programmer
  • 37
  • 5
1
vote
2 answers

Embedding UIScrollView in UIContainerView

I'm working on embedding a UIScrollView in UIContainerView so that I can have several text fields. I tried implementing the solution from this SO answer, but haven't been successful. Both view controllers are set to be freeform as described in the…
narner
  • 2,908
  • 3
  • 26
  • 63
1
vote
2 answers

Is "Simulate Interface" gone in Xcode 6.0.1?

The "Simulate Document" feature is available for Mac .xib file(s) and the "Simulate Document" feature was under Editor. Is it possible to "Simulate Interface" in Xcode 6.0.1? If it is gone, what is the initial purpose for having it at the first…
XY L
  • 25,431
  • 14
  • 84
  • 143
1
vote
1 answer

UISearchDisplayController Positioning issue

When i click on UISearchBar it changes its position and tableview overlaps UISearchBar .i changed its position in but its not working. -(void)searchDisplayControllerWillBeginSearch:(UISearchDisplayController *)controller { if ([[[UIDevice…