|
Re: BundleDisplayName
Here the result of my investigations so far:
1. The file-system-name (shown by ls command) = PRODUCT_NAME.
The PRODUCT_NAME is initially set to $(TARGET_NAME).
Changing the Target Name to: “New
Here the result of my investigations so far:
1. The file-system-name (shown by ls command) = PRODUCT_NAME.
The PRODUCT_NAME is initially set to $(TARGET_NAME).
Changing the Target Name to: “New
|
By
Gerriet M. Denkmann
·
#41
·
|
|
Re: BundleDisplayName
My guess is that it asymmetric for historical and/or compatibility reasons. There’s also something about the Finder storing a “.Localized…” named file inside the bundle, but I don’t know if
My guess is that it asymmetric for historical and/or compatibility reasons. There’s also something about the Finder storing a “.Localized…” named file inside the bundle, but I don’t know if
|
By
Quincey Morris
·
#42
·
|
|
NSInteger and NSUInteger
Hi,
I’m trying to use NSInteger and/or NSUInteger in a InitWithFormat statement, I’m using %ld as the specifier but this is producing warnings? Has this changed recently, because code that used
Hi,
I’m trying to use NSInteger and/or NSUInteger in a InitWithFormat statement, I’m using %ld as the specifier but this is producing warnings? Has this changed recently, because code that used
|
By
Dave
·
#43
·
|
|
Re: NSInteger and NSUInteger
Formats for NS(U)Integer:
%t… (%td, %to, %tu %tx, %tX) for unsigned results NSUInteger
%z… (%zd, %zo, %zu %zx, %zX) for signed results NSInteger
Gerriet.
Formats for NS(U)Integer:
%t… (%td, %to, %tu %tx, %tX) for unsigned results NSUInteger
%z… (%zd, %zo, %zu %zx, %zX) for signed results NSInteger
Gerriet.
|
By
Gerriet M. Denkmann
·
#44
·
|
|
Re: NSInteger and NSUInteger
Where did you find this info? I've seen mention of them, but never an official type doc that lists them.
--
Steve Mills
Drummer, Mac geek
Where did you find this info? I've seen mention of them, but never an official type doc that lists them.
--
Steve Mills
Drummer, Mac geek
|
By
Steve Mills
·
#45
·
|
|
Re: NSInteger and NSUInteger
Hi,
Thanks a lot for this - where did you find it?
Cheers
Dave
Hi,
Thanks a lot for this - where did you find it?
Cheers
Dave
|
By
Dave
·
#46
·
|
|
Re: NSInteger and NSUInteger
Probably this was posted on Apple’s CocoaDev mailing list by someone who surely knows about these things.
Gerriet.
Probably this was posted on Apple’s CocoaDev mailing list by someone who surely knows about these things.
Gerriet.
|
By
Gerriet M. Denkmann
·
#47
·
|
|
Re: NSInteger and NSUInteger
General information on format specifiers is here:
https://developer.apple.com/library/content/documentation/Cocoa/Conceptual/Strings/Articles/formatSpecifiers.html
I use %td for NSInteger and %tu for
General information on format specifiers is here:
https://developer.apple.com/library/content/documentation/Cocoa/Conceptual/Strings/Articles/formatSpecifiers.html
I use %td for NSInteger and %tu for
|
By
Steve Christensen
·
#48
·
|
|
Printing NSTextView puts text in middle of page
Printing a NSTextView centres the text (if it is less than one page in size) vertically in the page, as opposed to the top.
What do you need to do to fix this?
let tv =
Printing a NSTextView centres the text (if it is less than one page in size) vertically in the page, as opposed to the top.
What do you need to do to fix this?
let tv =
|
By
tridiak
·
#49
·
|
|
Re: NSInteger and NSUInteger
Original post of this solution came from no other than Greg Parker!
Original post of this solution came from no other than Greg Parker!
|
By
dhoerl
·
#50
·
|
|
Re: NSInteger and NSUInteger
Xcode list 2013:
Date: Sun, 17 Nov 2013 15:38:22 -0500From: Andy Lee <aglee@...>To: "Gerriet M. Denkmann" <gerriet@...>Cc: Xcode Users <xcode-users@...>Subject: Re: printing NSUInteger in
Xcode list 2013:
Date: Sun, 17 Nov 2013 15:38:22 -0500From: Andy Lee <aglee@...>To: "Gerriet M. Denkmann" <gerriet@...>Cc: Xcode Users <xcode-users@...>Subject: Re: printing NSUInteger in
|
By
dhoerl
·
#51
·
|
|
Printing NSTextView puts text in middle of page - Solved
Sorry for noise. Found the solution 5mins after I sent the email.
Mark
Sorry for noise. Found the solution 5mins after I sent the email.
Mark
|
By
tridiak
·
#52
·
|
|
UIDocumentInteractionController with non-standard file types
My iOS app has 2 custom UTIs declared in the Imported UTIs section, and 3 Document Types (those 2, plus pdf). When I try to share a file (doesn't matter if the URL's UTI is one of the custom types or
My iOS app has 2 custom UTIs declared in the Imported UTIs section, and 3 Document Types (those 2, plus pdf). When I try to share a file (doesn't matter if the URL's UTI is one of the custom types or
|
By
Steve Mills
·
#53
·
|
|
Re: UIDocumentInteractionController with non-standard file types
Have you tried it on a real device to see if there is any difference in
Have you tried it on a real device to see if there is any difference in
|
By
Steve Christensen
·
#54
·
|
|
Re: UIDocumentInteractionController with non-standard file types
That was the problem. Too bad it doesn't at least spit out a log message that no apps could be found. That would've saved lots of confusion and debugging.
--
Steve Mills
Drummer, Mac geek
That was the problem. Too bad it doesn't at least spit out a log message that no apps could be found. That would've saved lots of confusion and debugging.
--
Steve Mills
Drummer, Mac geek
|
By
Steve Mills
·
#55
·
|
|
Re: UIDocumentInteractionController with non-standard file types
It is spitting out what it finds, not what it doesn't. And depending on what you were expecting, it could have reported the same behavior on a real device, depending on what apps are installed. Which
It is spitting out what it finds, not what it doesn't. And depending on what you were expecting, it could have reported the same behavior on a real device, depending on what apps are installed. Which
|
By
Steve Christensen
·
#56
·
|
|
Re: UIDocumentInteractionController with non-standard file types
Your opinion. Plenty of Apple software spit out log messages that are *far* less informative than a simple "No apps found - not displaying Open In" would be.
--
Steve Mills
Drummer, Mac geek
Your opinion. Plenty of Apple software spit out log messages that are *far* less informative than a simple "No apps found - not displaying Open In" would be.
--
Steve Mills
Drummer, Mac geek
|
By
Steve Mills
·
#57
·
|
|
Getting Started with Animations
Hi All,
I’m about to add some animations to my game and was wondering if any could give me some advice on the implementation given my App. This is for iOS Landscape only at present but I am
Hi All,
I’m about to add some animations to my game and was wondering if any could give me some advice on the implementation given my App. This is for iOS Landscape only at present but I am
|
By
Dave
·
#58
·
|
|
Re: Getting Started with Animations
Yup, I would recommend using CALayers for the whole UI, pretty much. Back when Core Animation first came out I wrote a framework for building board/card
Yup, I would recommend using CALayers for the whole UI, pretty much. Back when Core Animation first came out I wrote a framework for building board/card
|
By
Jens Alfke
·
#59
·
|
|
Re: Getting Started with Animations
Thanks a lot Jens. I’ll download it now and take a look.
All the Best
Dave
Thanks a lot Jens. I’ll download it now and take a look.
All the Best
Dave
|
By
Dave
·
#60
·
|