|
NSAllowsArbitraryLoads
4 messages
Great list,
Provided the App Store review allowed it, would having a Preference that adds and sets the info.plist NSAppTransportSecurity/NSAllowsArbitraryLoads to true break my App Store App?
cheers
B
Great list,
Provided the App Store review allowed it, would having a Preference that adds and sets the info.plist NSAppTransportSecurity/NSAllowsArbitraryLoads to true break my App Store App?
cheers
B
|
By
Bill Pitcher
·
|
|
isFlipped??
3 messages
Hi,
I’m trying to find some docs on isFlipped. When I search for it in the XCode docs, it only brings up a reference in NSImage and that’s deprecated.
I’m overriding this on some Classes on the
Hi,
I’m trying to find some docs on isFlipped. When I search for it in the XCode docs, it only brings up a reference in NSImage and that’s deprecated.
I’m overriding this on some Classes on the
|
By
Dave
·
|
|
Difference between NSPoint, NSSize, NSRect and the CG Versions
10 messages
Hi,
Is there any real difference between NSPoint, NSRect, NSSize etc. and the CG versions?
I can use the CG Versions on Mac and iOS but the NS versions only on Mac.
If I only used the CG vers
Hi,
Is there any real difference between NSPoint, NSRect, NSSize etc. and the CG versions?
I can use the CG Versions on Mac and iOS but the NS versions only on Mac.
If I only used the CG vers
|
By
Dave
·
|
|
Getting class when instantiating a singleton
12 messages
I did this a few years ago but can’t find my sample and figured I’d ask the brain trust here.
In iOS, when I’m making an Objective-C singleton, in the public method that returns the instanceType, we n
I did this a few years ago but can’t find my sample and figured I’d ask the brain trust here.
In iOS, when I’m making an Objective-C singleton, in the public method that returns the instanceType, we n
|
By
Alex Zavatone
·
|
|
How to Translate iOS UIView Point to Mac NSView
4 messages
Hi,
I’m converting some Manual Layout code from iOS to Mac.
I’m overriding “layout” in my class, it calculates and sets the Frame Rect for all its subviews. This works ok on Mac, except, as expe
Hi,
I’m converting some Manual Layout code from iOS to Mac.
I’m overriding “layout” in my class, it calculates and sets the Frame Rect for all its subviews. This works ok on Mac, except, as expe
|
By
Dave
·
|
|
Preprocessor Deployment Target
2 messages
I need something like:
#if MACOSX_DEPLOYMENT_TARGET < 10.11 ← this of course does not work
… some code, which is only needed in this case …
#endif
Is this possible?
Gerriet.
I need something like:
#if MACOSX_DEPLOYMENT_TARGET < 10.11 ← this of course does not work
… some code, which is only needed in this case …
#endif
Is this possible?
Gerriet.
|
By
Gerriet M. Denkmann
·
|
|
How to make typeAlias ?
4 messages
I have some (old) code like:
NSAppleEventDescriptor *eventDecriptor = ….
DescType descriptorType = eventDecriptor.descriptorType;
if ( descriptorType == typeAlias ) // ‘alis’
{
… How to g
I have some (old) code like:
NSAppleEventDescriptor *eventDecriptor = ….
DescType descriptorType = eventDecriptor.descriptorType;
if ( descriptorType == typeAlias ) // ‘alis’
{
… How to g
|
By
Gerriet M. Denkmann
·
|
|
Getting Windows to Appear.....
3 messages
Hi All,
I’m having problems getting a window to appear on the Mac.
This is the first time I’ve used Storyboards on the Mac and I’m not sure I have things setup correctly.
When I created the p
Hi All,
I’m having problems getting a window to appear on the Mac.
This is the first time I’ve used Storyboards on the Mac and I’m not sure I have things setup correctly.
When I created the p
|
By
Dave
·
|
|
Background color on NSView?
4 messages
Hi All,
I’ve just realised that NSView don’t have a background colour. I remember hitting this a long while ago and got around it by using a layer and adding a “setBackgroundColor” method to my Cla
Hi All,
I’ve just realised that NSView don’t have a background colour. I remember hitting this a long while ago and got around it by using a layer and adding a “setBackgroundColor” method to my Cla
|
By
Dave
·
|
|
Difference in View Identifiers between Mac and iOS?
4 messages
Hi,
I’m moving some IB Views Across from iOS to Mac. By moving, I mean re-creating as you can’t copy+paste between iOS and Mac Storyboards.
In the IOS Storyboard view controller, I have some Vie
Hi,
I’m moving some IB Views Across from iOS to Mac. By moving, I mean re-creating as you can’t copy+paste between iOS and Mac Storyboards.
In the IOS Storyboard view controller, I have some Vie
|
By
Dave
·
|
|
Help with Code Sign Error?
8 messages
Sorry - I posted with the wrong subject in my last mail!
Hi All,
I’m try to build my application for Mac. It compels ok, but I get this Code Sign Error. I
Code Sign Error Group
Command /usr
Sorry - I posted with the wrong subject in my last mail!
Hi All,
I’m try to build my application for Mac. It compels ok, but I get this Code Sign Error. I
Code Sign Error Group
Command /usr
|
By
Dave
·
|
|
How to Register (and build) a Mac App on Apple Developer and iTunes Connect
9 messages
Hi All,
I’m try to build my application for Mac. It compels ok, but I get this Code Sign Error. I
Code Sign Error Group
Command /usr/bin/codesign failed with exit code 1
CodeSign /Users/surf
Hi All,
I’m try to build my application for Mac. It compels ok, but I get this Code Sign Error. I
Code Sign Error Group
Command /usr/bin/codesign failed with exit code 1
CodeSign /Users/surf
|
By
Dave
·
|
|
Compiling Conditionally depending on OS
7 messages
Hi all,
How do I compile differently depending on the Platform I am compiling for?
I have an iOS project, but using the these macros:
#if TARGET_OS_IPHONE
// iOS code
#endif
#if
Hi all,
How do I compile differently depending on the Platform I am compiling for?
I have an iOS project, but using the these macros:
#if TARGET_OS_IPHONE
// iOS code
#endif
#if
|
By
Dave
·
|
|
Problems registering AppID on the Apple Developer Site
7 messages
Hi,
I need to registers 6 Apps on the Apple Developer Site.
I’ve done 3 ok, there are LTWiPhoneAppX, LTWiPadAppX and LTWMacAppX these 3 all use GameKit and In-App Purchase and they are enabled o
Hi,
I need to registers 6 Apps on the Apple Developer Site.
I’ve done 3 ok, there are LTWiPhoneAppX, LTWiPadAppX and LTWMacAppX these 3 all use GameKit and In-App Purchase and they are enabled o
|
By
Dave
·
|
|
How to store C Arrays as a Property or iVar?
20 messages
Hi All,
I’ve converted some C code into Objective-C and have some C Array structures like so:
int [10][10]) myArray;
That I want to store in a Property or iVar inside a Wrapper Class. How do
Hi All,
I’ve converted some C code into Objective-C and have some C Array structures like so:
int [10][10]) myArray;
That I want to store in a Property or iVar inside a Wrapper Class. How do
|
By
Dave
·
|
|
APFS & FileSystem attributes
12 messages
Apologies if this is a dumb question, but I'm wondering whether we'll still be able to call NSFileManager api's like attributesOfItem and get back things like NSFileReferenceCount and the like.
Does
Apologies if this is a dumb question, but I'm wondering whether we'll still be able to call NSFileManager api's like attributesOfItem and get back things like NSFileReferenceCount and the like.
Does
|
By
2551phil
·
|
|
iOS Reachability
3 messages
Hi,
A while back I included some code from a sample project that setup Game Center/Kit. This code used a Class called “ Reachability”:
Copyright (c) 2011, Tony Million.
All rights reserved.
Hi,
A while back I included some code from a sample project that setup Game Center/Kit. This code used a Class called “ Reachability”:
Copyright (c) 2011, Tony Million.
All rights reserved.
|
By
Dave
·
|
|
Understanding NSNetService and peer-to-peer streaming
9 messages
Hi all,
I’m trying to add a peer-to-peer communication feature to a game I’m developing.
So far it’s half working, which given the paucity of documentation, I’m actually quite proud of…
Becau
Hi all,
I’m trying to add a peer-to-peer communication feature to a game I’m developing.
So far it’s half working, which given the paucity of documentation, I’m actually quite proud of…
Becau
|
By
Graham Cox
·
|
|
"broken pipe", but not when debugging...
9 messages
Hi,
I’m using NSTask to ‘talk to’ a command line executable that is embedded in my app. I use NSPipe as its stdIn and stdOut channels.
When I run the code under Xcode, it works fine. When I build
Hi,
I’m using NSTask to ‘talk to’ a command line executable that is embedded in my app. I use NSPipe as its stdIn and stdOut channels.
When I run the code under Xcode, it works fine. When I build
|
By
Graham Cox
·
|
|
(OT) Image Editing App for Mac?
5 messages
Hi,
Can anyone recommend a light weight Image Creation and Editing App for the Mac?
I’d like to be able to create images with fixed dimensions and background colour and be able to resize images
Hi,
Can anyone recommend a light weight Image Creation and Editing App for the Mac?
I’d like to be able to create images with fixed dimensions and background colour and be able to resize images
|
By
Dave
·
|