xcode6.3 Questions
1
Solved
I've been using the new nullability stuff in Xcode 6.3
However, I'm running into an issue like this
[Object doSomethingWithNonNullParam:otherObject.nullableProperty];
Whats the best way to sol...
Audryaudrye asked 15/7, 2015 at 4:1
5
Solved
After the Xcode update, the compiler began to throw an error on the working code (both functions are in the AppDelegate.swift).
func application(application: UIApplication,
didFinishLaunchingWith...
6
Solved
As stated in the title, upgraded today to iOS 8.2 and my device is not supported in Xcode 6.3 beta.
Even though Xcode 6.3 supports iOS 8.3, I also cannot install iOS 8.2 simulator.
I cannot quit ...
2
Solved
I updated to Xcode 6.3, and I had two separate projects (one is a framework) in my workspace. Now, Xcode autogenerated this "frameworkname"-Swift.h header file, but when I had a generic class as a ...
Separative asked 9/4, 2015 at 8:23
2
Error :
Auto property synthesis will not synthesize property 'delegate'. It will be implemented by its superclass, use @dynamic to acknowledge intention
Code with Error : @property (nonatomic, we...
Mindy asked 20/5, 2015 at 0:7
4
Solved
I just recently downloaded the latest public release of Xcode (6.3) and I noticed the storyboard for my app is now low res on my Retina MacBook Pro. Images, text and standard UI elements all appear...
Refinery asked 9/4, 2015 at 14:34
2
When running my App, I'll get this occur 3 out of 4 attempts to run the app from xcode. Hitting enter & CMD-R will sometimes generate the error again, and sometimes (rarely) actually run & ...
2
Solved
I'm trying to build a project in Xcode but I get the following errors Implicit declaration of function 'clear' is invalid in C99 and Conflicting types for 'clear'.
Here's the code:
//main.c
#incl...
Inwrap asked 22/4, 2015 at 22:19
2
My Apple watch app is now finished ! I'd like to archive it to submit it for iTunes validation. My problem is that I can archive the iPhone app, but no way to archive the whole project...
Do anyo...
Samiel asked 19/4, 2015 at 14:40
2
Solved
I just upgraded to Xcode 6.3 and I have lost the unit test status/run indicators that were displayed in the left gutter of the editor. The status/run indicators don't immediately show in the Test N...
Antic asked 11/4, 2015 at 5:0
1
Solved
I am getting this below warning after I update the Xcode to 6.3 version.
Using integer absolute value function 'abs' when argument is of
floating point type
Example
CGPoint startPoint = CGP...
Snack asked 21/4, 2015 at 12:52
1
Solved
Building an app in Xcode 6.3 gets stuck for several minutes (approx. 10mins) on a step Merge MyApp.swiftmodule:
MergeSwiftModule normal x86_64 /Users/.../Library/Developer/Xcode/DerivedData/MyApp-...
1
Solved
Did XCode 6.3 / Swift 1.2 add additional margins to a UITableViewCell's contentView? Prior to updating, I had a custom UIView that extended all the way across the screen in my cells. Example:
No...
Garble asked 18/4, 2015 at 2:19
2
Solved
One of the long anticipated features of Swift 1.2/Xcode 6.3 is incremental builds. They worked fine for me until recently, but now almost every time I change even a single line of code it does full...
2
I just updated my Xcode to 6.3 and my project which was working fine till xcode 6.2 started giving errors .
Error is <TargetName-Swift.h> file not found ,current path of bridging head...
Baten asked 11/4, 2015 at 21:0
1
I am getting compilation errors anywhere NSParameterAssert is used. For example:
-(instancetype)initForPlot:(CPTPlot *)plot withFunction:(CPTDataSourceFunction)function
{
NSParameterAssert([plot...
Birecree asked 9/4, 2015 at 21:55
3
Solved
I had Xcode 6.3 beta and iOS 8.3 beta, I updated to the public final versions and now I cannot run anything, getting this error:
No provisioned iOS devices are available with a compatible iOS
...
1
Solved
This code did not change between Xcode 6.2 and 6.3, but the line containing [self alloc] now causes the error:
Multiple methods named 'initWithType:' found with mismatched result, parameter type o...
Headboard asked 10/4, 2015 at 14:12
2
Solved
This sample code on Xcode 6.3 ...
var str1 = ""
var str2 = ""
if str1.isEmpty ^ str2.isEmpty {
// do something.
}
displays the following error.
'^' is unavailable: use the '!=' operator instea...
1
Solved
I'm trying to use this code in a class though I keep on getting the above message.
let filePath: NSString!
let _fileHandle: NSFileHandle!
let _totalFileLength: CUnsignedLongLong!
init?(file...
2
Solved
I'm not inventing the wheel. In iOS8, to open Settings from inside the app I'm using this code:
BOOL canOpenSettings = (&UIApplicationOpenSettingsURLString != NULL);
if (canOpenSettings)
{
N...
Tiepolo asked 10/4, 2015 at 10:44
2
Solved
Is it possible to use Xcode 6.3 but stay with Swift 1.0?
Using the iOS 8.2 SDK does not help, and I could not find any switch for the Swift version ...
EDIT:
I have an extension build in Swift 1.0...
© 2022 - 2024 — McMap. All rights reserved.