Questions tagged [xcode7-beta2]

Apple's Xcode 7 beta 2 was eased on 6/23/2015

Xcode 7 beta includes SDKs for watchOS 2.0, iOS 9 and OS X version 10.11. To develop apps targeting prior versions of OS X or iOS, see the section “About SDKs and the Simulator” in What's New in Xcode available on https://developer.apple.com or from the Help > What's New in Xcode command when running Xcode.

46 questions
1
vote
4 answers

Cannot subscript a value

I created a brand new Swift project, then added the following podfile to it platform :ios, '8.0' use_frameworks! target 'LifeStream' do pod 'SSKeychain' pod 'LiveSDK' pod 'Alamofire', '~> 1.2' end target 'LifeStreamTests' do pod 'SSKeychain' pod…
Johnathon Sullinger
  • 7,097
  • 5
  • 37
  • 102
0
votes
1 answer

exc-bad-instruction code=i386_invop

I'm getting this error in latest version of xcode using swift 2 on line let s = linkTxt.text Text in linkTxt appears by button "pasteFromClipBoard" let s = linkTxt.text let u = NSURL(string: s!) let file =…
SwiftStudier
  • 2,272
  • 5
  • 21
  • 43
0
votes
2 answers

Auto layout Failed to Render

I have been getting this error only on occasion when I work on my storyboard: Failed to render and update auto layout status for Category ViewController: IBAppleTVSimulatorAgent.app failed to launch I usually just close and reopen my xcode and…
Jenel Ejercito Myers
  • 2,553
  • 2
  • 16
  • 24
0
votes
1 answer

Swift- MKMapkit view only one city?

I'm trying to make an app viewing the college I'm going to but I'm having trouble only viewing the one city. I'm trying to make sure that the user cannot scroll past the city. I'm then trying to overlay that region. I thought the setRegion method…
Amissi
  • 167
  • 2
  • 12
0
votes
2 answers

UITableView pads touch area

I follow Apple tutorial to make a simple app using table (as in the below image). The red area height is 8 point. Why is touching the red area does not select first row ("Buy milk")? Is it expected or is it a bug? How to fix?
a developer
  • 149
  • 2
  • 10
0
votes
1 answer

Is it possible to submit app to Appstore which is developed in Xcode 7 beta 2

I developed app using xcode 7 beta 2 version. Can I submit it to App store
rani
  • 593
  • 3
  • 10
  • 28
0
votes
2 answers

Xcode 6 displays Xcode 7 Beta error messages after installing the beta

I have a project which I developed under Xcode 6. Since only Xcode 7 lets me install apps on a physcial device without developer programm, I opened the same project that ran without errors in Xcode 6 in Xcode 7 and got 35 issues. I didn't want to…
zero
  • 745
  • 1
  • 5
  • 12
0
votes
0 answers

Swift: Binary operator '|' cannot be applied to two NSCalendarUnit operands (Xcode 7)

Why I can't use | Binary operator in calendar.components to separate the units? According to this article by NSHipster or this Github project by minorbug I should be allowed to do it. Code: calendar.components(NSCalendarUnit.Month |…
Brian Nezhad
  • 6,148
  • 9
  • 44
  • 69
0
votes
1 answer

Xcode 7 beta 2 not compiling code

I'm running Xcode 7 beta 2 and my code won't compile, it won't break on breakpoints when running and it won't throw errors even if I add broken code to it. When I run my application in the simulator my old version of my app runs in the simulator…
Dan Beaulieu
  • 19,406
  • 19
  • 101
  • 135
0
votes
1 answer

App Crashes when not connected to Xcode iOS 9(beta 2)?

I have installed my app on iOS9 Beta 2 and It doesn't crash when it was run through xcode, as soon as I detach device from the xcode it starts crashing. Below is the crash log, got from the xcode console: TCP Conn 0x1566cf10 released Jul  3 14:43:26…
Anup Rojekar
  • 1,093
  • 9
  • 29
0
votes
1 answer

Cannot use unarchiveFromFile to set GameScene in SpriteKit

I'm using Xcode 7 beta 2 and following raywenderlich.com's Breakout tutorial to learn SpriteKit. Here's the error I get when I try to load GameScene using unarchiveFromFile. GameScene.type does not have a member named unarchiveFromFile. Here's…
Hadi
  • 109
  • 10
0
votes
2 answers

Compilation errors in xCode 7 + Swift 2.0

Since I have installed the xCode 7 beta2 + Swift 2.0, I'm getting some errors in my app. For example, I'm getting the following error "Cannot invoke 'requestAccessToEntityType' with an argument list of type '(EKEntityType, completion: (Bool,…
Ruben
  • 1,789
  • 2
  • 17
  • 26
0
votes
1 answer

'_' is not convertible to StringLiteralConvertible

My custom function is following: func mockDictionaryForLocation() -> [String: AnyObject] { let dictionary = [ "id" = "1234", //here I have an error from the title, why? "working_type" = "open_for_selected", …
Bartłomiej Semańczyk
  • 59,234
  • 49
  • 233
  • 358
0
votes
1 answer

Getting different behavior between iOS simulator and iPhone deploy

After updating from Xcode 7 beta to Xcode 7 beta 2 I've started getting odd behavior in my tableView rows. A few points to mention: I am not to the stage where I am editing my user interface, everything is set to its initial defaults. I have not…
Dan Beaulieu
  • 19,406
  • 19
  • 101
  • 135
-1
votes
1 answer

Unknown 'FBSDKCoreKit' module in Swift2 Xcode 7 beta

I use Xcode 7 beta with Swift2 and when I import FBSDKCoreKit the error appear like this "No such module 'FBSDKCoreKit' ". How can I solve this problem.