Apple's Xcode 7 beta 6 is a prerelease version of Xcode 7 released on August 24, 2015.
Questions tagged [xcode7-beta6]
51 questions
168
votes
5 answers
"changing property masksToBounds in transform-only layer, will have no effect" in Xcode 7
I am receiving this warning in the debugger console when I launch my app on iPad Xcode 7 beta 6. There was no such warning till Xcode 6. I don't understand why it may have come and that too, only on iPad.
According to an Apple forum thread it could…

StudentX
- 2,506
- 5
- 19
- 28
23
votes
3 answers
Xcode 7 debug output: "ERROR:177: timed out...mMajorChangePending=0"
I am seeing the following error in Xcode 7 build 6 debug console when running my app in the iOS 9 simulator:
2015-08-27 11:31:25.464 Reps[87841:2572333] 11:31:25.463 ERROR: 177: timed out after 0.012s (589 590); mMajorChangePending=0
Has anyone…

phatmann
- 18,161
- 7
- 61
- 51
20
votes
4 answers
Xcode UI Testing [xcode7-beta6] - Asserting actual label values when using accessibility labels
The question is actually really simple:
Is there a way to assert the displayed value from a specific label (e.g. UILabel) when using an accessibility label on this object?
As far as I see it, all the assertions (e.g. XCTAssertEquals) made in the…

wegenmic
- 320
- 1
- 3
- 13
8
votes
7 answers
Xcode 7 Beta 6, dyld ___NSArray0__ crash
For the first time I was able to compile my app in Xcode 7 (failed in beta 4 and 5). So, thats good progress I guess.
However, when i load my app on my iPhone 6, iOS 8.4.1, it crashed in the debugger with the following message:
dyld: Symbol not…

Sachin
- 141
- 2
- 6
7
votes
3 answers
UI Testing Failure - Neither element nor any descendant has keyboard focus on TextView
I'm facing a problem with 'Textview' type field. I am unable to enter text in FeedbackTextView field.
let FeedbackTextView = app.staticTexts["Feedback Textview"]
FeedbackTextView.tap()
FeedbackTextView.typeText("This is test feedback")
Following…

OsamaA
- 451
- 1
- 8
- 13
5
votes
2 answers
Can I debug my app on iOS 7 from Xcode 7?
Can I debug my app on iOS 7 from Xcode 7?
From what I can tell Xcode 7 just ignores any plugged in devices with iOS 7 installed. Is this just a fluke or is this a permanent change to Xcode?
(Using: Xcode 7 beta 6, iPhone 4S iOS 7.1)

Awesome-o
- 2,002
- 1
- 26
- 38
4
votes
4 answers
Why doesn't my App list my Settings?
I've added the stock 'Settings.Bundle' into my App Bundle:
However, I get a different set of settings (shown in simulator):
* Revision *
The Settings.bundle is a member of the target:
Here's where the settings.bundle is located:
Note: I…

Frederick C. Lee
- 9,019
- 17
- 64
- 105
2
votes
1 answer
Swift: Error When Removing Status Bar
I am trying to remove the status bar from my UIViewController. I went into the info.plist and changed the View controller-based status bar appearance to NO and in my AppDelegate.swift I implemented the following:
func application(application:…

FrostbitYeti
- 33
- 7
2
votes
2 answers
Xcode 7 beta 6 stuck on "copying Pkginfo"
When I try to install app on my iPhone the Xcode gets stuck on Copying Pkginfo.
I have deleted Xcode beta & installed it again. Still same problem.
I created new single page app & not a single line of code. It works on simulator but does not install…

Apoorv Mote
- 523
- 3
- 25
2
votes
3 answers
Got error "The identity used to sign the executable is no longer valid."when debug on iPhone
I am using Xcode 7 beta 6 on Yosemite, but I have encounter the problem
The identity used to sign the executable is no longer valid.
Error when I am trying to build my app on my iPhone. The detailed information is:
Please verify that your…

Mutawe
- 6,464
- 3
- 47
- 90
2
votes
0 answers
Swift 2.0 Switch between storyboards using iBeacon
I am working on a project with iBeacon. When the beacon which is closed to my iPhone it changes the background of the stage. Now i got this working i want to turn this to change the storyboards.
self.view.backgroundColor =…

Yoooouri
- 39
- 4
2
votes
1 answer
Unit tests with designated AppDelegate crashes on XCode 7
My unit test target crashes on Xcode 7.
I perform unit tests on my project with a designated app delegate class, different from my regular app delegate . The UnitTestAppDelegate is not a member of the app target, only of the test target.
In Xcode 6…

AShavit
- 416
- 3
- 10
2
votes
1 answer
AutoreleasingUnsafeMutablePointer crash - bug in compiler?
I'm slowly migrating my codebase to Swift and came across a weird crash, where I'm populating an AutoreleasingUnsafeMutablePointer with a non-nil string. Here is some scaled down code:
extension String {
func getRegexVariableNamed(name:…

Charlie Monroe
- 1,210
- 9
- 24
2
votes
1 answer
Bug in Clang function-like macro parsing with Objective C variadic method call?
Consider the following call:
NSString* localized = NSLocalizedString([NSString stringWithFormat:@"Hello %@", @"World"], @"");
What is wrong with it? I see nothing inherently wrong, yet the compiler/preprocessor complains that too many parameters…

Léo Natan
- 56,823
- 9
- 150
- 195
1
vote
1 answer
fatal error: unexpectedly found nil while unwrapping an Optional value while trying to change UILabel text
I'm making a simple temperature converter for a mobile apps class using Swift.
We're sort of breezing over swift so I don't have a lot of experience with it. I had a lot of problems getting it to compile but I eventually got everything all nice and…

Andrew-Saarima
- 270
- 3
- 9