|
The Correct Place to Migrate my NSDocument
3 messages
I have an App that needs to be upgraded (thanks App Store) and I want the new App to Open and migrate it’s old documents to the new versions document. With the new File Type and Extension. All good, I
I have an App that needs to be upgraded (thanks App Store) and I want the new App to Open and migrate it’s old documents to the new versions document. With the new File Type and Extension. All good, I
|
By
Bill Pitcher
·
|
|
Audio stops playing when screens goes dark after screen lock.
Hi, I have a metronome app that is able to play audio in the background just fine. It even continues playing when the screens is locked. That is, until the screen goes dark after a few seconds. Playba
Hi, I have a metronome app that is able to play audio in the background just fine. It even continues playing when the screens is locked. That is, until the screen goes dark after a few seconds. Playba
|
By
Antonio - SintraWorks
·
|
|
update Localization
4 messages
I have an app (macOS 13.4, Xcode Version 9.3 (9E145)) which was localised (Xcode did some magic for me). Now I made some changes. Is there a way to update the Localizable.string, MainMenu.strings, etc
I have an app (macOS 13.4, Xcode Version 9.3 (9E145)) which was localised (Xcode did some magic for me). Now I made some changes. Is there a way to update the Localizable.string, MainMenu.strings, etc
|
By
Gerriet M. Denkmann
·
|
|
Opaque text in NSTextField
2 messages
I have an NSTextField (macOS 13.4, Xcode Version 9.3 (9E145)) which says: textColour Generic Gray colorspace 1 1 backGroundColour NSCalibratedWhiteColorSpace 0 0.4 This, I guess, means all white and a
I have an NSTextField (macOS 13.4, Xcode Version 9.3 (9E145)) which says: textColour Generic Gray colorspace 1 1 backGroundColour NSCalibratedWhiteColorSpace 0 0.4 This, I guess, means all white and a
|
By
Gerriet M. Denkmann
·
|
|
struct return of nil
3 messages
macOS 13.4; Xcode Version 9.3 (9E145). This is (I believe) documented to work: NSString *answer = … if ( answer.length == 0 ) { // works for answer = nil or answer = “” (empty string) answer = @“No an
macOS 13.4; Xcode Version 9.3 (9E145). This is (I believe) documented to work: NSString *answer = … if ( answer.length == 0 ) { // works for answer = nil or answer = “” (empty string) answer = @“No an
|
By
Gerriet M. Denkmann
·
|
|
[OT] Experienced Freelance Mac and iOS Developer available
Hello All, I’m looking for remote work on Mac and iOS. I have over 25 years experience on the Mac and iOS since the first iPhone. I’ve recently finishing a long contract where I gained a *lot* of expe
Hello All, I’m looking for remote work on Mac and iOS. I have over 25 years experience on the Mac and iOS since the first iPhone. I’ve recently finishing a long contract where I gained a *lot* of expe
|
By
Dave
·
|
|
NSData base64Encoding vs. base64EncodedStringWithOptions
4 messages
Xcode 9.2, iOS 11.2, Objective-C Looking at the header for NSData, and base64EncodedStringWithOptions: NSDataBase64EncodingOptions, the options are these starting on line 50 of NSData.h: typedef NS_OP
Xcode 9.2, iOS 11.2, Objective-C Looking at the header for NSData, and base64EncodedStringWithOptions: NSDataBase64EncodingOptions, the options are these starting on line 50 of NSData.h: typedef NS_OP
|
By
Alex Zavatone
·
|
|
Swift and KVC
7 messages
This simple little playground doesn’t print any value for the last line. It is a minimization of an issue I’m having in a larger program where the key-value can not be found. Is it me (likely) or is i
This simple little playground doesn’t print any value for the last line. It is a minimization of an issue I’m having in a larger program where the key-value can not be found. Is it me (likely) or is i
|
By
Marco S Hyman
·
|
|
Internationalisation of MainMenu
6 messages
I am trying to make an macOS app international. On thing is MainMenu.strings. This contains lots of stuff which must have an official translation (e.g. into German) already. (e.g. Edit → Cut). Is ther
I am trying to make an macOS app international. On thing is MainMenu.strings. This contains lots of stuff which must have an official translation (e.g. into German) already. (e.g. Edit → Cut). Is ther
|
By
Gerriet M. Denkmann
·
|
|
FYI, Xcode 9.3 was just released.
https://download.developer.apple.com/Developer_Tools/Xcode_9.3/Xcode_9.3.xip
https://download.developer.apple.com/Developer_Tools/Xcode_9.3/Xcode_9.3.xip
|
By
Alex Zavatone
·
|
|
NSCondition
8 messages
Hi All, I’ve almost got my threaded Consumer/Producer Working using NSThread and friends. However, under certain circumstances, I’m getting objects “stuck” on the queue and the Consumer thread not fir
Hi All, I’ve almost got my threaded Consumer/Producer Working using NSThread and friends. However, under certain circumstances, I’m getting objects “stuck” on the queue and the Consumer thread not fir
|
By
Dave
·
|
|
string pointer
11 messages
I have a method like (macOS 13.3, Xcode 9.2 (9C40b)): - (NSUInteger)computeFor: (NSUInteger)arg reason: (NSString * __autoreleasing *)reason { NSUInteger value; // some computing… if ( reason != NULL
I have a method like (macOS 13.3, Xcode 9.2 (9C40b)): - (NSUInteger)computeFor: (NSUInteger)arg reason: (NSString * __autoreleasing *)reason { NSUInteger value; // some computing… if ( reason != NULL
|
By
Gerriet M. Denkmann
·
|
|
horizontally scrolling table
2 messages
I have a view-based NSOutlineTable with a single column containing static text. How do I make the column resize appropriately so that the table will scroll horizontally, rather than truncating the tex
I have a view-based NSOutlineTable with a single column containing static text. How do I make the column resize appropriately so that the table will scroll horizontally, rather than truncating the tex
|
By
James Walker
·
|
|
Changing head item on a (GCD) Queue
13 messages
Hi All, I need to do some changes to a Mac Objective-C project to do the following: 1. Data is Sent to a Delegate method in a class. 2. The data is validated by this method and if ok, it needs to be p
Hi All, I need to do some changes to a Mac Objective-C project to do the following: 1. Data is Sent to a Delegate method in a class. 2. The data is validated by this method and if ok, it needs to be p
|
By
Dave
·
|
|
Getting IB_DESIGNABLE to work properly
14 messages
Hi all, I’m working on a small custom view project (Mac), and have it working generally quite well. I decided to make it IB_DESIGNABLE, and that too mostly works - I can see the view in IB rendered wi
Hi all, I’m working on a small custom view project (Mac), and have it working generally quite well. I decided to make it IB_DESIGNABLE, and that too mostly works - I can see the view in IB rendered wi
|
By
Graham Cox
·
|
|
Push notification debugging mobile profile on Apple's 2265 TN.
https://developer.apple.com/library/content/technotes/tn2265/_index.html Enabling Push Status Messages on iOS To enable logging on iOS, install the configuration profile PersistentConnectionLogging.mo
https://developer.apple.com/library/content/technotes/tn2265/_index.html Enabling Push Status Messages on iOS To enable logging on iOS, install the configuration profile PersistentConnectionLogging.mo
|
By
Alex Zavatone
·
|
|
Keyboard types on the iPad for UITextFields
4 messages
Just checking in to see if someone here knows something I don’t with regards to the available keyboard types vs. the displayed keyboard types on the iPad under iOS. Of course, the documentation here i
Just checking in to see if someone here knows something I don’t with regards to the available keyboard types vs. the displayed keyboard types on the iPad under iOS. Of course, the documentation here i
|
By
Alex Zavatone
·
|
|
macOS animation works once, then not again
4 messages
I'm probably missing something obvious here. I have an NSScrollView. Its document view is an NSImageView. At some point, I add a custom NSView subclass as a subview of the image view. This custom view
I'm probably missing something obvious here. I have an NSScrollView. Its document view is an NSImageView. At some point, I add a custom NSView subclass as a subview of the image view. This custom view
|
By
Steve Mills
·
|
|
Tootips in NSTextView/NSTextfields
4 messages
I want to display tooltips over parts of an attributed string, and thought that using an NSToolTipAttributeName attribute on the required ranges would do the trick but I can't get it to work. In my to
I want to display tooltips over parts of an attributed string, and thought that using an NSToolTipAttributeName attribute on the required ranges would do the trick but I can't get it to work. In my to
|
By
Sak Wathanasin
·
|
|
Replace object at key path in NS[Mutable]Dictionary
4 messages
HiI all, I have a dictionary that has been loaded from a plist file, which has a deep structure of dictionaries within dictionaries. I would like to modify just one key-value pair deep in that hierarc
HiI all, I have a dictionary that has been loaded from a plist file, which has a deep structure of dictionaries within dictionaries. I would like to modify just one key-value pair deep in that hierarc
|
By
Jonathan Taylor
·
|