Questions tagged [xcode6-beta7]
20 questions
58
votes
3 answers
Storyboard View Elements Greyed Out
I'm currently trying to edit a storyboard file, in Xcode 6 (not sure if this is an Xcode bug, or if i've just done something), and when I go to the view i want to edit this is what the scene shows me :
Is this something I've enabled accidentally?…

Alex Trott
- 4,576
- 4
- 23
- 30
10
votes
1 answer
xcode6 beta7 prepareForSegue throws EXC_BAD_ACCESS
I've just installed XCode6 Beta-7 and am now seeing an access exception on one of my PrepareForSegue methods - (called when a Modal Segue is about to unwind)
The code in question looks like this:
override func prepareForSegue(segue:…

Nash
- 266
- 2
- 12
8
votes
4 answers
ERROR ITMS-9000: "Missing or invalid signature.
ERROR ITMS-9000: "Missing or invalid signature. The bundle 'com.google.GPPSignIn3PResources' at bundle path 'Payload/My_app_name.app/GooglePlus.bundle' is not signed using an Apple submission certificate."
I was able to submit same build previously…

SRS Infosystems
- 167
- 2
- 16
8
votes
5 answers
Why additional #import in bridging header failed in swift?
Before I added a new dependency to my test project via CocoaPods, I have already added a C header file ('wahoo.h') and exposed it to the swift code via a bridging header file "wahoo-Bridging-Header.h". The test app could be compiled and run without…

Anthony Kong
- 37,791
- 46
- 172
- 304
8
votes
2 answers
Partial application of protocol method is not allowed
Can someone explain this error and why this works with closure?
If you change 'Test' to 'A' inside 'B' class everything works in both cases.
beta 7
protocol Test {
func someFunc() -> String
var someClosure: () -> Int { get }
}
class A: Test…

Aleksey G.
- 171
- 8
7
votes
2 answers
Set custom navigation bar class in UINavigationController
I have a custom navigationBar :
class Name_UINavigationBar: UINavigationBar {
// code
}
and I want to set it to my navigation controller programmatically. So I tried :
var navController : UINavigationController = UINavigationController(
…

anasaitali
- 1,504
- 21
- 30
6
votes
2 answers
swift UIActivityIndicatorView .hidden = false not working
I am trying to show an Activity Indicator View once a button is pressed, but it does not want to show. If I don't set it to hidden at all, it shows, and when I try hide it, it hides. But if it is hidden, it will not show again.
Here is the…
user3900721
6
votes
1 answer
Optional type '$T11' cannot be used as a boolean; test for '!= nil' instead since installing XCode 6 beta 7
Here is the code where I'm getting the error:
for (key, value) in info {
let fieldValue: AnyObject? = value
if (!fieldValue || fieldValue?.length == 0) { // this line gives the error
informationComplete = false;
}
}
This is…

LondonGuy
- 10,778
- 11
- 79
- 151
3
votes
1 answer
Undefined symbols for architecture armv7 (WebRTC)
Currently i am building a WebRTC app for iPad (iOS7) using Swift on Xcode 6 beta 7. I keep getting these errors. Have I added wrong libraries? Is it not able to find them?
Here are the errors it's printing:
Undefined symbols for architecture…

Randall Stephens
- 1,037
- 1
- 10
- 16
3
votes
2 answers
NSString.sizeWithAttributes() in Swift beta7
This piece of code bellow used to work fine in Xcode 6 beta 5:
func fitText(){
let size = (self.text as NSString).sizeWithAttributes([NSFontAttributeName:self.font]) //Errors here
self.frame.size = size
}
Now it gives the following errors…

Hristo
- 6,382
- 4
- 24
- 38
2
votes
2 answers
SWIFT - changing height of UITextView, xcode 6 GM
I'm having some trouble changing the height of a simple textview. It doesn't need to size automatically to the content or anything, I just need to change the height when an iad banner loads and when it's hidden.
all I can find on it, is autoresizing…

MLyck
- 4,959
- 13
- 43
- 74
2
votes
5 answers
Xcode 6 beta 7 UIView.animateWithDuration Extra argument 'usingSpringWithDamping' in call
I'm getting this error only when using Swift and I was wondering if anybody else has this issue currently
Extra argument 'usingSpringWithDamping' in call
UIView.animateWithDuration(NSTimeInterval(doctorPracticeDuration), delay: 0.0,…

Stephen Sweriduk
- 278
- 6
- 11
1
vote
1 answer
Bound value in a conditional binding must be of Optional type in Xcode Beta 7, not in beta 6
This is my code:
if let myWindow: UIWindow = UIApplication.sharedApplication().keyWindow {
window = myWindow
} else {
window = myWindow2[0] as? UIWindow
}
It is throwing this exception at the first line (where it says if let):
Bound value…
user3900721
1
vote
1 answer
TestFlight 'Invalid Profile' get-task-allow flag is always false
I'm attempting to distribute my app via TestFlight but my get-task-allow flag is always false when I build for distribution. I'm building on Xcode 6 B7 and iOS 8 only, with one of those new embedded frameworks. I'm not sure this matters or not.
I've…

Troy Payne
- 343
- 2
- 3
- 9
1
vote
0 answers
Size classes don't work for extensions on iOS8/XCode Beta 7
I'm following the exact steps from this video (from 7:49 onwards): http://youtu.be/IwSTXY0awng?t=7m49s
The UIButton I'm adding to my view when changing the size class to, for example, portrait iPhone, always shows up. Note: only acts this way in…

dandoen
- 1,647
- 5
- 26
- 44