Post

Replies

Boosts

Views

Activity

Reply to Requesting an expert's opinion: Can't get into recovery after swapping M1 components
A few things here: These are the Developer Forums, where developers of apps for Apple's platforms ask each other for hints and tips on coding. This is not the place for product support. Finally, you knew this MacBook was stolen, and I'm not about to help you in any way. That MacBook belongs to someone else. You have received stolen goods. You will not get any help from us here.
Topic: Community SubTopic: Apple Developers Tags:
Aug ’24
Reply to Allow "App" to find the devices on local network?
That's a security alert that gives the user the opportunity to confirm or deny access for your app to devices on their local network. Bypassing that alert would be a massive no-no. (If an app could bypass it, what's the point in the alert...?) You need to handle the situation where the user confirms access, and when they deny access. When they deny, you should give them reasons as to why it's required, and give them instructions on how to grant access.
Aug ’24
Reply to Duplicate bar buttons appear when .toolbar is applied to a Group View
I think that's expected behaviour. As you've said, it applies the modifier to each item in the Group. With .onAppear it wouldn't make sense to do the same thing three times. All three Text views appeared, why would you want to call a method three times, or change a variable three times? For .toolbar you're adding three Buttons, and I would say that's what you would want to happen, no? Three buttons with the same format, style, etc.
Topic: UI Frameworks SubTopic: SwiftUI
Aug ’24
Reply to Becoming an iOS developer, it's getting harder and harder
Same with any job in tech. Software testers have to learn Selenium, Webdriver, Cypress, Playwright, Postman, security testing, functional testing, load/stress testing, performance testing, UI testing, API testing... And when someone finally creates some sort of 'AI'-powered test tool that actually works and doesn't just cause issues, they'll have to learn that, too.
Aug ’24
Reply to Xcode assets missing after adding new MacBook and iCloud.
Are your project files on your iCloud Drive? Are you opening the projects from there? I use iCloud Drive to store my files, and it will occasionally delete some of them inside folders, including inside package files. I raised a feedback report for this at least a year ago. It doesn't affect just Xcode stuff, so important folders of files I now zip up as well. I'd ask you to raise an FB, too.
Aug ’24
Reply to Controller app cannot be approved because it does not meet Minimum Functionality?
I agree with @Claude31. You should put all the functionality in one app that can be used on an iPhone or iPad, then - with your two devices - allow the user to designate one of them as the Camera and the other as the Controller. Note that the app should work on both iPad and iPhone, so you may have to change the layout of the iPad app you've already created.
Aug ’24
Reply to Image aspect ratio
You're using a different image. It was .personsmiling, now it's .liberaltears for some reason. Does it work with the .personsmiling image? As an aside, those names are difficult to read without capitalisation. I'd use .personSmiling, for example.
Topic: UI Frameworks SubTopic: SwiftUI
Aug ’24
Reply to Controller app cannot be approved because it does not meet Minimum Functionality?
Doesn't the new M4 iPad Pro support 240fps? This is from the specs page: Slo‑mo video support for 1080p at 120 fps or 240 fps. Having two apps isn't going to work. They have to provide useful functionality on their own. If you combine the features into one app, and you only ever want the camera part of the app to run on an iPhone, then: If running on an iPhone allow user to select Controller or Camera. This will allow a user with two iPhones to use one as Controller and one as Camera. If running on an iPad, only allow the selection of it as the Controller. In this case I would check which models can support 240fps and allow it to be used as Camera or Controller if that iPad can support it. I understand how smushing everything into one app will be a major change, but the guidelines have been there for years; you could've looked at them and asked us this question before embarking on the apps. I know that doesn't really help, and you may not have felt that any of the guidelines would hit you this way, but you will gain a lot of knowledge in doing this, so it's not all been wasted effort.
Aug ’24
Reply to Zombie Xcode problem
Does this exhibit itself by you trying to quit it, then the "Quit" item in the menu is disabled? If so, yes, this has happened to me a number of times. I also end up force-quitting it, and I raised a bug. I suggest you also raise a bug: https://feedbackassistant.apple.com/ then post the FB number here.
Sep ’24
Reply to EXC_BAD_ACCESS (SIGSEGV) crash observed in NSDateFormatter APIs
I think you have to set your date formatter's locale before setting the format: NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init]; NSDate *date = [NSDate dateWithTimeIntervalSinceReferenceDate:410220000]; // US English Locale (en_US) dateFormatter.locale = [[NSLocale alloc] initWithLocaleIdentifier:@"en_US"]; [dateFormatter setLocalizedDateFormatFromTemplate:@"MMMMd"]; // set template after setting locale NSLog(@"%@", [dateFormatter stringFromDate:date]); // December 31 // British English Locale (en_GB) dateFormatter.locale = [[NSLocale alloc] initWithLocaleIdentifier:@"en_GB"]; [dateFormatter setLocalizedDateFormatFromTemplate:@"MMMMd"]; // set template after setting locale NSLog(@"%@", [dateFormatter stringFromDate:date]); // 31 December
Topic: App & System Services SubTopic: General Tags:
Sep ’24