Post

Replies

Boosts

Views

Activity

Reply to tvOS libquic.dylib not found
@eskimo thanks for pointing out it's just log noise its super annoying because its lets say "hard noise" suggesting a bad problem, missing library nothing seems to have changed for a year or two - do you reckon it's worth filing a bug report or ? its almost that someone needs to write a "known noise filter" for the logs :) it can make it so hard to work on projects
Sep ’23
Reply to How can i add a UIView on the material of the ModelEntity?
One thing, regarding interactions, you'd have to handle that completely manually in a custom way yourself. There is no meaningful relationship between the 3D world and UX interactions. Youi'd have to program it by hand on a case-by-case basis. If you're familiart with the typical touch handling in 3D engines where you cast through the screen to see what you're touching, that would be the way to begin the process.
Topic: Graphics & Games SubTopic: RealityKit Tags:
Nov ’22
Reply to Xcode 13.0 can't pair to Apple TV 4K (tvOS 15.0)
If it helps anyone ... one factor is, you really need a good router. Consider just rolling to bestbuy and getting a new top of line router, it's a cost of business :/ Certainly, there can be cert problems etc. But it is really much smoother with the newest possible router. It may even sound silly but be sure to have proper modern cat8 ethernet cables for your jumpers (eg, from fiber modem or whatever to router to switch and to your appleTVs) I've really found that pairing only works solidly if you have a really new router and everything in ideal condition. Routers are constantly slightly changing in subtleties of the specification and versions.
Jun ’22
Reply to UISlider with stops every quarter.
Ten years later it is now trivial to do this .. https://stackoverflow.com/a/79573572/294884
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Apr ’25
Reply to Accessing local MySQL from Xcode (cocoa) and macos
The overwhelmingly popular library to do this is just https://github.com/groue/GRDB.swift - everyone uses it It's the library used in the native apps of every large corp we work for. It's dead easy to use and is indeed in combo with mysql the very best on-phone database system.
Replies
Boosts
Views
Activity
Sep ’24
Reply to Query SwiftData model for max value of an attribute
Set fetch limit to one lazy var maxId = { var d = FetchDescriptor<MyThing>(sortBy: [SortDescriptor(\.id, order: .reverse)]) d.fetchLimit = 1 return d }() then the line of code is highestId = (try? context.fetch(maxId))?.first?.id ?? -1
Replies
Boosts
Views
Activity
Aug ’24
Reply to 2 second lag while switching between files by clicking them.
Thanks for posting the great tip NOTE, another important tip, prefs -> navigation - > take care for the four options "navigation style", "navigation" etc. The different combinations used there drastically affect file-change time, in conjunction with what OP said.
Replies
Boosts
Views
Activity
Aug ’24
Reply to Unable to use the private key for APNS
fantastic tip thanks
Replies
Boosts
Views
Activity
Jul ’24
Reply to Is swiftData just not useable with large data?
It does seem to be utterly useless for anything more than toy amounts of data. Remembering that CoreData, is, utterly useless for anything more than toy amounts of data. this makes sense I guess. @RyanTCB did you gather any more experience on this one?
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Mar ’24
Reply to tvOS libquic.dylib not found
@eskimo thanks for pointing out it's just log noise its super annoying because its lets say "hard noise" suggesting a bad problem, missing library nothing seems to have changed for a year or two - do you reckon it's worth filing a bug report or ? its almost that someone needs to write a "known noise filter" for the logs :) it can make it so hard to work on projects
Replies
Boosts
Views
Activity
Sep ’23
Reply to Export animation from .dae
TOTAL explanation for 2023 ... https://stackoverflow.com/a/75093081/294884
Topic: Graphics & Games SubTopic: SceneKit Tags:
Replies
Boosts
Views
Activity
Jan ’23
Reply to Export animation from .dae
FOR 2023. Here is a full, total explanation of the current situation: https://stackoverflow.com/a/75093081/294884
Topic: Graphics & Games SubTopic: SceneKit Tags:
Replies
Boosts
Views
Activity
Jan ’23
Reply to SCNGeometry is difficult to instantiate
guys why are you sending in four verts for a triangle ?
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Nov ’22
Reply to How can i add a UIView on the material of the ModelEntity?
One thing, regarding interactions, you'd have to handle that completely manually in a custom way yourself. There is no meaningful relationship between the 3D world and UX interactions. Youi'd have to program it by hand on a case-by-case basis. If you're familiart with the typical touch handling in 3D engines where you cast through the screen to see what you're touching, that would be the way to begin the process.
Topic: Graphics & Games SubTopic: RealityKit Tags:
Replies
Boosts
Views
Activity
Nov ’22
Reply to Focus Engine for UIView-based views
https://stackoverflow.com/a/55123253/294884
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Oct ’22
Reply to contentMode on UIImageView is overriden when setting adjustsImageWhenAncestorFocussed
It's hard to believe this is still a problem six years later ?!?!?? Can't be real ?
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Jul ’22
Reply to Xcode 13.0 can't pair to Apple TV 4K (tvOS 15.0)
If it helps anyone ... one factor is, you really need a good router. Consider just rolling to bestbuy and getting a new top of line router, it's a cost of business :/ Certainly, there can be cert problems etc. But it is really much smoother with the newest possible router. It may even sound silly but be sure to have proper modern cat8 ethernet cables for your jumpers (eg, from fiber modem or whatever to router to switch and to your appleTVs) I've really found that pairing only works solidly if you have a really new router and everything in ideal condition. Routers are constantly slightly changing in subtleties of the specification and versions.
Replies
Boosts
Views
Activity
Jun ’22