|
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
·
|
|
BRCloudDocsErrorDomain Code=12 “App library not found
Starting an document based app in macOS 13.1 I get: […] [default] [ERROR] Failed getting container for URL: [ ~/Desktop/the current document] r, error: Error Domain=BRCloudDocsErrorDomain Code=12 “App
Starting an document based app in macOS 13.1 I get: […] [default] [ERROR] Failed getting container for URL: [ ~/Desktop/the current document] r, error: Error Domain=BRCloudDocsErrorDomain Code=12 “App
|
By
Gerriet M. Denkmann
·
|
|
Centering image view in scroll view 3 messages
Ack. I'm having a hard time figuring out how to make an NSImageView in an NSScrollView act like it does in Preview.app, where it will stay centered within the window when any axis is smaller than the
Ack. I'm having a hard time figuring out how to make an NSImageView in an NSScrollView act like it does in Preview.app, where it will stay centered within the window when any axis is smaller than the
|
By
Steve Mills
·
|
|
Simple iOS App with Foundation InputStream and OutputStream... 5 messages
All, I created a simple iOS app to connect to a server and receive a message. I am doing this as an example app using InputStream, OutputStream, and StreamDelegate. The Server is a simple Java app run
All, I created a simple iOS app to connect to a server and receive a message. I am doing this as an example app using InputStream, OutputStream, and StreamDelegate. The Server is a simple Java app run
|
By
bap04e@...
·
|
|
Cancelling dispatch_after? 8 messages
Hi all, Is there a way to cancel a scheduled block used with dispatch_after(…)? While I’m finding the functionality it offers really useful, it seems like as soon as you use it you have to commit to t
Hi all, Is there a way to cancel a scheduled block used with dispatch_after(…)? While I’m finding the functionality it offers really useful, it seems like as soon as you use it you have to commit to t
|
By
Graham Cox
·
|
|
Add overflow indicator to text 6 messages
I'm using NSTextContainer with exclusionPaths, NSLayoutManager, and UITextView for rendering text into balloons, and the user can control the font size. When overflow occurs, I'd like to show an indic
I'm using NSTextContainer with exclusionPaths, NSLayoutManager, and UITextView for rendering text into balloons, and the user can control the font size. When overflow occurs, I'd like to show an indic
|
By
Steve Mills
·
|
|
TextFields in a Row with AutoLayout
macOS 12.6, Xcode Version 9.1 (9B55). A window with: fixedSpace | fixedTextField | fixedSpace | textField(width ≥ 50) | fixedSpace | textField(width ≥ 100) | variableSpace( width ≥ 10) This implies wi
macOS 12.6, Xcode Version 9.1 (9B55). A window with: fixedSpace | fixedTextField | fixedSpace | textField(width ≥ 50) | fixedSpace | textField(width ≥ 100) | variableSpace( width ≥ 10) This implies wi
|
By
Gerriet M. Denkmann
·
|
|
How to configure NumberFormatter in Xcode 3 messages
macOS 12.6, Xcode Version 9.1 (9B55). I added a NumberFormatter (Decimal) to some TextField. This now shows: “12.345”. Not bad, but I want to see: “12.3”. NSNumberFormatter has a property: maximumFrac
macOS 12.6, Xcode Version 9.1 (9B55). I added a NumberFormatter (Decimal) to some TextField. This now shows: “12.345”. Not bad, but I want to see: “12.3”. NSNumberFormatter has a property: maximumFrac
|
By
Gerriet M. Denkmann
·
|
|
Opening File in Finder 7 messages
I want to have a Finder window with “/a/hugeFolder/someThin"g selected. [ NSWorkspace.sharedWorkspace openFile: @“/a/hugeFolder/someThing” withApplication: @“Finder" ] results in an AlertPanel: “There
I want to have a Finder window with “/a/hugeFolder/someThin"g selected. [ NSWorkspace.sharedWorkspace openFile: @“/a/hugeFolder/someThing” withApplication: @“Finder" ] results in an AlertPanel: “There
|
By
Gerriet M. Denkmann
·
|
|
Observing changes in TableView 6 messages
macOS 12.6 I have an ArrayController which has ContentArray bound to AppDelegate.contentArray The contentArray contains MutableDictionaries with a key “Flag”, value: boxed BOOL. And a TableView which
macOS 12.6 I have an ArrayController which has ContentArray bound to AppDelegate.contentArray The contentArray contains MutableDictionaries with a key “Flag”, value: boxed BOOL. And a TableView which
|
By
Gerriet M. Denkmann
·
|
|
Documentation on printing in NSView, etc. 2 messages
Hi all, Can anyone link any sort of documentation that explains what all the stuff NSView does for printing does? I’m sure there used to be documentation explaining this but I just can’t find it. (And
Hi all, Can anyone link any sort of documentation that explains what all the stuff NSView does for printing does? I’m sure there used to be documentation explaining this but I just can’t find it. (And
|
By
Graham Cox
·
|
|
Hello
Dear all, My name is Akifumi Takata. Regards, Akifumi Takata
Dear all, My name is Akifumi Takata. Regards, Akifumi Takata
|
By
Akifumi Takata
·
|
|
LInker errors where there were none before 8 messages
Hi all, I’m suddenly running into some linker errors against AudioToolbox on a project after upgrading Xcode and installing High Sierra (not sure which of these did it). Undefined symbols for architec
Hi all, I’m suddenly running into some linker errors against AudioToolbox on a project after upgrading Xcode and installing High Sierra (not sure which of these did it). Undefined symbols for architec
|
By
Graham Cox
·
|