|
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
·
|
|
Is it possible to connect different hosts on LAN with NSXPCConnection?
2 messages
Dear all, I am developing a persistent object framework (object oriented database) called the Nursery framework. https://github.com/Nursery-Framework/Nursery In that framework I am using a deprecated
Dear all, I am developing a persistent object framework (object oriented database) called the Nursery framework. https://github.com/Nursery-Framework/Nursery In that framework I am using a deprecated
|
By
Akifumi Takata
·
|
|
Showing tooltips myself
HI, Is there a way to force a tooltip to display when I want it to? I have a UI with a spring-loaded popover - it is only shown during mousedown on its host view. Tooltips on the items in the popover
HI, Is there a way to force a tooltip to display when I want it to? I have a UI with a spring-loaded popover - it is only shown during mousedown on its host view. Tooltips on the items in the popover
|
By
Graham Cox
·
|
|
Auto-Layout Question
2 messages
I would like some help building constraints that adjust a superView to the size of it's subView. Specifically, I have a UILabel embedded in a UIView. The label has fixed width and (since numberOfLines
I would like some help building constraints that adjust a superView to the size of it's subView. Specifically, I have a UILabel embedded in a UIView. The label has fixed width and (since numberOfLines
|
By
Rick Aurbach
·
|
|
problems with tab key and custom views
3 messages
I have a window with 3 views that I want to be able to switch focus between using the tab or shift-tab keys. Going by the view programming guide, it seems like I shouldn't have to do anything besides
I have a window with 3 views that I want to be able to switch focus between using the tab or shift-tab keys. Going by the view programming guide, it seems like I shouldn't have to do anything besides
|
By
James Walker
·
|
|
warning about %s in format string
3 messages
Clang has a warning option, -Wcstring-format-directive, that produces a warning "Using %s directive in NSString which is being passed as a formatting argument to the formatting method" on a line like:
Clang has a warning option, -Wcstring-format-directive, that produces a warning "Using %s directive in NSString which is being passed as a formatting argument to the formatting method" on a line like:
|
By
James Walker
·
|
|
potential leak warnings from static analyzer on window controllers
3 messages
The static analyzer gives me some warnings of possible leaks that I know aren't real leaks, but it makes me think that I may be using a bad design pattern. The situation is that I create an instance o
The static analyzer gives me some warnings of possible leaks that I know aren't real leaks, but it makes me think that I may be using a bad design pattern. The situation is that I create an instance o
|
By
James Walker
·
|
|
Launching apps on 10.13.2
12 messages
Hi all, We are getting a few reports from a couple of our more adventurous customers who are running a beta version of 10.13.2, saying that our app doesn’t launch (the App is available on the App Stor
Hi all, We are getting a few reports from a couple of our more adventurous customers who are running a beta version of 10.13.2, saying that our app doesn’t launch (the App is available on the App Stor
|
By
Graham Cox
·
|
|
iOS/Mac OS Foundation class inheritance graphical representation - are there any examples anywhere in the Apple docs?
2 messages
While we see in the docs for the classes we are looking at that “this class inherits from this other class”, we don’t see the whole inheritance chain. Sometimes, that’s useful. Once we have a model of
While we see in the docs for the classes we are looking at that “this class inherits from this other class”, we don’t see the whole inheritance chain. Sometimes, that’s useful. Once we have a model of
|
By
Alex Zavatone
·
|
|
Removing kext from StagedExtensions
2 messages
On High Sierra, 10.13.n, how does a developer go about uninstalling their own kext placed in /Library/StagedExtensions? As I understand it (maybe incorrectly), these are under SIP protection. The docs
On High Sierra, 10.13.n, how does a developer go about uninstalling their own kext placed in /Library/StagedExtensions? As I understand it (maybe incorrectly), these are under SIP protection. The docs
|
By
2551phil
·
|
|
sleep wake without runloop
5 messages
macOS 13.1 Is there a way to ascertain whether a process is sleeping or awake? There is IORegisterForSystemPower which sends seep/wake notifications but needs a runloop. Anything else? Background: I w
macOS 13.1 Is there a way to ascertain whether a process is sleeping or awake? There is IORegisterForSystemPower which sends seep/wake notifications but needs a runloop. Anything else? Background: I w
|
By
Gerriet M. Denkmann
·
|
|
using select() without blocking the runloop
7 messages
I need to do select() with a rather large timeout value (several minutes). So in order not to block the runLoop / mainThread I tried: dispatch_queue_t myQueue = dispatch_get_global_queue( QOS_CLASS_BA
I need to do select() with a rather large timeout value (several minutes). So in order not to block the runLoop / mainThread I tried: dispatch_queue_t myQueue = dispatch_get_global_queue( QOS_CLASS_BA
|
By
Gerriet M. Denkmann
·
|
|
Where to Delegate for StreamDelegate?
2 messages
All, I sort of came down with "paralysis analysis" last night. I am developing a small chat app on iOS. I am going to use Foundation's InputStream, OutputStream, and StreamDelegate. I became stuck bet
All, I sort of came down with "paralysis analysis" last night. I am developing a small chat app on iOS. I am going to use Foundation's InputStream, OutputStream, and StreamDelegate. I became stuck bet
|
By
Brandon Peters
·
|
|
No-UI SMS/phone
3 messages
My app may need to - send an SMS message; or - place what looks like a phone call to a paging system … without user intervention. In other words MessageUI.framework and tel: URLs are out. Is there a w
My app may need to - send an SMS message; or - place what looks like a phone call to a paging system … without user intervention. In other words MessageUI.framework and tel: URLs are out. Is there a w
|
By
Fritz Anderson
·
|
|
How to Install Mac OS X 10.11.6
9 messages
Hi All, I’m trying to update an old Mac Pro Early 2008 from 10.10.5 to 10.11.6, does anyone know how to do this? I can’t find it on the App Store and can’t find a separate .dmg file to download….. Any
Hi All, I’m trying to update an old Mac Pro Early 2008 from 10.10.5 to 10.11.6, does anyone know how to do this? I can’t find it on the App Store and can’t find a separate .dmg file to download….. Any
|
By
Dave
·
|
|
Xcode: Installing components
3 messages
After migrating to macOS 13.1 when I first started Xcode (9.1) it told me that it had to install some components. What are these “components” and where do they live? Also: My macOS 13 partition does n
After migrating to macOS 13.1 when I first started Xcode (9.1) it told me that it had to install some components. What are these “components” and where do they live? Also: My macOS 13 partition does n
|
By
Gerriet M. Denkmann
·
|