Post

Replies

Boosts

Views

Activity

Comment on Objective-C++ confuses two private classes with the same name
Thank you for your reply. I don't know what makes a class specifically an Obj-C++ or Obj-C class. I know these two are defined with C++ class syntax (no @implementation or whatnot), but they do call methods on an Obj-C class. These two classes do exist in the same target, but the linker did not give me a warning. Thanks for the link to the video. This project predates Xcode 15, but I will keep this feature in mind next time I need to include a C++ library.
Topic: Programming Languages SubTopic: General Tags:
Jul ’24
Comment on How to identify audio and video AVCaptureDevices that are from the same hardware?
I'm aware of uniqueID and it's been helpful in differentiating capture devices of the same type. What I'm trying to figure out is whether an audio AVCaptureDevice and a video AVCaptureDevice are coming from the same piece of hardware. I found the documentation for linkedDevices and that sounds like exactly what I'm looking for, however, the array is always empty.
Topic: Media Technologies SubTopic: General Tags:
Jun ’24
Comment on How to hide elevated tabbar in iPadOS 18?
When do you call this? I tried this API and the tab bar is still visible. Update: I had to wait for viewWillAppear to call it.
Topic: UI Frameworks SubTopic: UIKit Tags:
Replies
Boosts
Views
Activity
Nov ’24
Comment on Disable new tab bar look
The new API has no effect. The tab bar is still visible after setting isTabBarHidden to true. Update: I had to wait for viewWillAppear to call it.
Topic: UI Frameworks SubTopic: General Tags:
Replies
Boosts
Views
Activity
Nov ’24
Comment on Objective-C++ confuses two private classes with the same name
Thank you for your reply. I don't know what makes a class specifically an Obj-C++ or Obj-C class. I know these two are defined with C++ class syntax (no @implementation or whatnot), but they do call methods on an Obj-C class. These two classes do exist in the same target, but the linker did not give me a warning. Thanks for the link to the video. This project predates Xcode 15, but I will keep this feature in mind next time I need to include a C++ library.
Topic: Programming Languages SubTopic: General Tags:
Replies
Boosts
Views
Activity
Jul ’24
Comment on How to identify audio and video AVCaptureDevices that are from the same hardware?
I'm aware of uniqueID and it's been helpful in differentiating capture devices of the same type. What I'm trying to figure out is whether an audio AVCaptureDevice and a video AVCaptureDevice are coming from the same piece of hardware. I found the documentation for linkedDevices and that sounds like exactly what I'm looking for, however, the array is always empty.
Topic: Media Technologies SubTopic: General Tags:
Replies
Boosts
Views
Activity
Jun ’24
Comment on How to identify audio and video AVCaptureDevices that are from the same hardware?
It wouldn't necessarily have to be the serial number. If there were a way to trace from an AVCaptureDevice back to a USB port, for example, then I could determine if two different AVCaptureDevices were connected via the same USB port, and therefore were coming from the same capture box.
Topic: Media Technologies SubTopic: General Tags:
Replies
Boosts
Views
Activity
Jun ’24