|
Bugreporter ?
3 messages
Logging in to: https://bugreport.apple.com I get a page “Bug Reporter” which does *not* lists my bugs, but just contains one line: “Apple Developer Program Support.”, which is a link to: https://devel
Logging in to: https://bugreport.apple.com I get a page “Bug Reporter” which does *not* lists my bugs, but just contains one line: “Apple Developer Program Support.”, which is a link to: https://devel
|
By
Gerriet M. Denkmann
·
|
|
a mouse event problem on macOS
6 messages
In response to a mouse-down event, I want to display an overlay
window and have a view in that window process mouseDragged
messages. However, it does not get any mouseDragged messages,
In response to a mouse-down event, I want to display an overlay
window and have a view in that window process mouseDragged
messages. However, it does not get any mouseDragged messages,
|
By
James Walker
·
|
|
NSTextContainer exclusionPaths not working on iOS
I'm trying to use exclusionPaths for the first time and am not having any success. For now, I'm just creating the stuff on the fly in my drawLayer:inContext: method:. The string draws, but doesn't exc
I'm trying to use exclusionPaths for the first time and am not having any success. For now, I'm just creating the stuff on the fly in my drawLayer:inContext: method:. The string draws, but doesn't exc
|
By
Steve Mills
·
|
|
qsort_b in Swift
6 messages
I have an array:
var sortedArray = [UInt32]()
for _ in 0 ..< limit { sortedArray.append( arc4random() ) }
sortedArray.sort()
This works fine.
I would like to compare the efficiency of “sort
I have an array:
var sortedArray = [UInt32]()
for _ in 0 ..< limit { sortedArray.append( arc4random() ) }
sortedArray.sort()
This works fine.
I would like to compare the efficiency of “sort
|
By
Gerriet M. Denkmann
·
|
|
Problem deriving custom object from UIScrollView
macOS 10.12.6 / Xcode 8.3ß6 / Swift 4 / developing for iOS
I am working on a custom object which derives from UIScrollView (at least for now...see below). For initial testing, I am placing it on a vie
macOS 10.12.6 / Xcode 8.3ß6 / Swift 4 / developing for iOS
I am working on a custom object which derives from UIScrollView (at least for now...see below). For initial testing, I am placing it on a vie
|
By
Rick Aurbach
·
|
|
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
·
|