78 Followers
52 Following
48 Posts
Been using the new Xcode with codex support and it has helped me refactor so much code already. So nice to have it go and convert objective c code to swift that have been meaning to do forever. As well as get more into tests created and convert existing to swift test from xctest. I could probably get all my objective c code converted in a month.
Don't forget TipKit for your new buttons!
Why is it that the apple photos app doesn’t support picture in picture for video? All other video apps basically support this, but not the photos app when watching videos. Frustrating
#ios #photosapp
Got my Apple Watch close your rings Apple pin 😬
Worked on an app intent to send files directly to the Apple Watch for iCatcher. Created a simple shortcut action that allows me to share/send a folder to the Apple Watch 😬 so nice for those that download audiobooks to their watches.
Not a huge deal in the news paid category but nice when it happens. https://apps.apple.com/us/app/icatcher-podcast-player/id414419105
iCatcher! Podcast Player App - App Store

Download iCatcher! Podcast Player by Joeisanerd.com on the App Store. See screenshots, ratings and reviews, user tips, and more games like iCatcher!

App Store

Finally pushed out an update to iCatcher. Mostly fixes, but working on some other UI things to come later. Apple Watch users will get some updates like manual sort for the locally downloaded episodes. Ability to select a playlist to auto transfer (when a download completes and it is already part of that playlist). Podcast search on the watch, but no subscribing yet. And like it’s been for a long time you can play through your watch speaker if you want. Don’t need a new watch for that.

https://apps.apple.com/us/app/icatcher-podcast-player/id414419105

iCatcher! Podcast Player App - App Store

Download iCatcher! Podcast Player by Joeisanerd.com on the App Store. See screenshots, ratings and reviews, user tips, and more games like iCatcher!

App Store
@_Davidsmith maybe this is a new use case for pedometer or it never worked this way. Walking on a treadmill standup desk with phone in pocket and looking at the watch for steps. Doesn’t change until I take phone out and look at app on the phone.

apparently the fix is to use .environment modifying. Example

.environment(\.editMode, $manager.editMode)
binding the editMode to a variable instead.

SwiftUI with a List plus multi selection and showing an alert is not going well. Selection bounded to a published property on an ObservableObject. Showing an alert causes the list toggle its edit mode, which clears the list of selected items. #swiftui