Questions tagged [xcode6.1.1]

Xcode 6.1.1 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.1.1 was unveiled on December 2, 2014.

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

22 questions
6
votes
0 answers

Xcode 6 [NSString drawInRect: withAttributes:]

I've upgraded my XCode 5 to 6, but unfortunately debugger suddenly stop or an exception at this point without a breakpoint. Please see image below for more details. This is the sample code I use, running on the previous version was fine. Is there…
DLende
  • 5,162
  • 1
  • 17
  • 25
5
votes
1 answer

How to add Xcode aggregate target on Xcode 6.1.1

I don't know how to add Xcode aggregate target on Xcode 6.1.1, previously there was an option under the newfile->other->aggregate. But I don't know where in this version of Xcode the aggregate target template is.
Vijay
  • 355
  • 1
  • 5
  • 19
4
votes
1 answer

Why does my tableView function run three times?

I have a UITableView and I have one of the required methods for its execution: func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int { println("section is \(section)") println(self.items.count) // self.items.count…
jshah
  • 1,599
  • 2
  • 17
  • 38
2
votes
0 answers

Xcode 6 using target build settings in scheme arguments

In order to test localisation, I have an Xcode scheme configured to specify simulator locale settings. The scheme appears as follows: -AppleLocale $(LANG)_$(COUNTRY) -AppleLanguages ($(LANG)) Passing the above arguments to the simulator has the…
user2320264
  • 53
  • 1
  • 5
2
votes
1 answer

Println and String Concatention issue

I have a strange behavior within swift playground. When I enter this lines of code println("test 1" + "test 2" + "test 3" + "test 4") //compiles println("test 1" + "test 2" + "test 3" + "test 4" + "test 5") //compiles println("test 1" + "test 2" +…
nemke
  • 2,440
  • 3
  • 37
  • 57
1
vote
2 answers

I keep getting Thread 1: signal SIGABRT in Xcode

I am trying to write a simple guessing swift app for iPhone. The code runs successfully, displaying "Build Succeeded". However, I keep getting this message for a particular line: "Thread 1: signal SIGABRT". The line contains "num += Int( (rand()%4)…
mhyousefi
  • 1,064
  • 2
  • 16
  • 30
1
vote
1 answer

iOS application name not show in iOS 6.1

I have created a iPhone application using Xcode 6.1. And works perfectely. If i run Application in iOS 6.1 os version's devices it show only app icon alone and not show app name. But it show normally in iOS 8 os version's devices. Below 1st mage is…
Mohanraj S K
  • 657
  • 4
  • 16
1
vote
0 answers

Landscape Orientation issue UIView and UIWindow in iOS 8

In my application, we support both portrait and landscape based the screens. when we push or navigate to portrait mode to landscape mode screen, then some portion of UIView doesn't has user interaction, popover controller view also presented in…
1
vote
4 answers

Error : Command failed due to signal : Segmentation fault: 11

I am trying to get an array from dictionary, but I am getting an error for below line self.items = self.dataDictionary["geoNames"] as NSArray Complete code is as below var dataDictionary: AnyObject! var items: NSArray! override func viewDidLoad()…
Ankita Shah
  • 2,178
  • 3
  • 25
  • 42
1
vote
2 answers

Xcode 6 ViewController content is smaller than the simulator screen

i'm developing app for both IOS7 & IOS8, and using storyBoard with size classes enabled. app works fine in all simulators from iPhone 4s IOS7 to iPhone 6+ but the viewController is smaller than the screen in iPhone 5 with iOS7 app supports…
Homam
  • 568
  • 7
  • 17
1
vote
0 answers

iOS deployment with Delphi XE7 with error 90209

I am trying to upload my app to the iStore. The upload fails with the following error: ERROR ITMS-90209: "Invalid Segment Alignment.The app binary does not have proper segment alignment". I have found that many users get a similar issue with…
Christo
  • 411
  • 7
  • 27
0
votes
1 answer

Compiler error in using Zbar SDK(library) in xcode 6

I got the following error while building my project: Undefined symbols for architecture i386: "_OBJC_CLASS_$_ZBarCaptureReader", referenced from: objc-class-ref in ZBarViewController.o ld: symbol(s) not found for architecture i386 clang:…
jitendra
  • 41
  • 1
0
votes
2 answers

UIKit.framework and CoreGraphics.framework are not found in Linked Frameworks and Libraries

I want to add two frameworks in my project but when i am go to project navigator and select general tab than further gone to Linked Frameworks and Libraries options choose frameworks and libraries to add: these Frameworks are not found in the list.
RAMA
  • 59
  • 11
0
votes
1 answer

Swift: 'Int32' is not convertible to 'Int32'

I'm in the middle of a project using Swift 1.1 and xCode 6.1.1 I receive the following error when trying to make seconds out of a Value and Timescale PATH/ViewControllers/Camera/CaptureScreenViewController.swift:41:58: 'Int32' is not convertible to…
Mark
  • 148
  • 3
  • 14
0
votes
1 answer

iOS Programming, Xcode 6.1.1. Error: Data file 'library.a-x86_64.fin' does not exist. Finalizing - Failed

I am using third party library files which contains .h, static library (.a), .fin, .key files. The readme says: 1) .fin, .key & .a files should be present on same location. 2) Add flags "-finalize -prefinalized-library library_name.a" in "Other…
1
2