Questions tagged [xcode6]

Xcode 6 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.

Xcode is Apple's integrated development environment (IDE) for developing OS X and iOS apps. The version 6 was presented at the WWDC on June 2nd 2014. The new features of Xcode 6 include the new programming language Swift, the playground as an interactive way to play with the code and a more visual debugger.

The latest production version of the IDE is Xcode 6.4. Download Here

The important enhancements are described here and here.

This tag is for IDE only questions with the version 6. Questions related to the programming languages should go to the correct tag , , and . When they are only related to the os and .

6121 questions
3
votes
1 answer

Generate doc for functions in Swift

I have a while looking for a way to generate docs for the functions in Xcode automatically using Swift. I know how to generate it manually line-for-line but at least for me , is nasty the way to do it, you have to specify everything manually and…
Victor Sigler
  • 23,243
  • 14
  • 88
  • 105
3
votes
2 answers

Xcode says "you don’t have permission to view it." after copying an existing target

I have a project and it works fine. Then I had to make a different version, with the same functions and just need to modify some UI pictures and app name. So I copied the target, made some changes to the target settings, like product name,…
longbow
  • 362
  • 2
  • 14
3
votes
2 answers

How to implement menu in iOS like Android

I need to implement menu for iOS like android.menu means button on navigation bar(right side). If I click that menu will display. I am using a storyboard.
3
votes
2 answers

Trying to start MapKit location updates without prompting for location authorization

In my app I use a MKMapKit and MKUserTrackingBarButtonItem to locate user on tap. When I tap to this button, output console returns this error: Trying to start MapKit location updates without prompting for location authorization. Must call…
Giuseppe
  • 165
  • 2
  • 10
3
votes
1 answer

can't open .XIB to another lower system version

In my mac project I have created .XIB file in xcode 5.1.1(OSX 10.10.2). This .XIB file i can't open in xcode 5.1.1(OSX 10.8.5) another system. Try below methods: open this file via pull from source control. copy and paste this file to another…
prabakaran iOS
  • 681
  • 7
  • 19
3
votes
3 answers

Delete iOS app settings

I'm working on an app that requires requesting mail access. Since the simulator doesn't have a Mail app I've been using my physical device to test the app. My problem is that I want to test the request to access Mail in relation to the welcome/intro…
Leighton
  • 6,559
  • 7
  • 21
  • 28
3
votes
1 answer

Invalid Bundle structure The binary file "WatchKitSupport/WK" is not permited

I'm trying to validate my App for iTunesStore, My App have Watchkit extention. I archive then validate I get these messages: ITunes Store operation failed. Invalid Bundle Structure - The binary file 'WatchKitSupport/WK' is not permited. Your app…
ahmeturhan
  • 57
  • 2
  • 5
3
votes
6 answers

Get an Int out of an UILabel Swift

I have the problem, to have a high amount of buttons which have a number as their label, so i thought i could take the label as an integer instead of creating an action for every button?! @IBAction func NumberInput(sender: UIButton) { var…
André Kuhlmann
  • 4,378
  • 3
  • 23
  • 42
3
votes
0 answers

XCode Different Concurrent Themes

Is there any way with or without a plugin to have two or more separate Xcode workspaces open at the same time ? I want each with a different theme / colour scheme. I often have two projects open which may have the same name, and would like to allow…
Ryan Heitner
  • 13,119
  • 6
  • 77
  • 119
3
votes
1 answer

Is it possible to handle push notifications in static library project in iOS?

I am trying to generate framework for iOS. In that need to handle the push notifications in static library project. Is it possible to handle push notifications in static library project ? If it is possible ,How ? Thanks.
3
votes
1 answer

Swift: Memory not clearing when I segue to another view controller, recieving memory warning

I am building an application in Xcode 6.2, for iOS 8.1. I have a UIViewController (LevelViewController) which contains a UICollectionView whose cells each represent a level in my game (each one has a label w/ a number). Once one of the cells is…
Mike Dane
  • 115
  • 2
  • 9
3
votes
3 answers

getting error "ReactiveCocoa/ReactiveCocoa.h" file not found

I am trying to build a Cocoapod xcode project. I followed below steps to configure cocoapods on my mac machine(MAC OS yosemite 10.10.2, xcode 6.1.1 version) sudo gem update --system sudo gem install cocoapods pod setup and then navigated to…
Nagendra
  • 193
  • 4
  • 14
3
votes
6 answers

How do I align a button under a label in Xcode 6?

I'm watching Stanford's cs193p lectures with iTunes U and the first demo has been a calculator. In the second lecture, the professor aligns the buttons with the bottom edge of the display label using a black grid line that appears. How do I enable…
halecommarachel
  • 124
  • 1
  • 9
3
votes
0 answers

Image slider in uitableview with SDWebImage

I am creating an app for iOS in which i have to show an image slider in each cell of UITableView and images will load from internet using SDWenImage library. I want to show image slider in every cell of tableview and for the image, we have a url.…
Usman Javed
  • 2,437
  • 1
  • 17
  • 26
3
votes
1 answer

Video streaming in Apple Watch app

Is Video streaming supported in iWatch? Can we stream videos from a camera placed in a remote location? If a camera is recording a video, then is it possible to show the video in an iWatch output screen ? I have an iPhone app that streams video. Can…
Alen Alexander
  • 725
  • 6
  • 22