Posts

Post not yet marked as solved
10 Replies
0 Views
I just managed to fix my laptop. Nothing worked. Tried everything. But now the laptop is working again and I'm actually writing this post from the formerly broken laptop. The solution was to restore the T2 chip. It's fairly easy, but requires you to have another computer with a T2 chip and a USB-C -> USB-C cable. Here's a tutorial on how it's done: 💩://mrmacintosh.com/how-to-restore-bridgeos-on-a-t2-mac-how-to-put-a-mac-into-dfu-mode/ (Replace the chocolate ice cream (or ****, depending on your preference) with http and you'll have a link to a tutorial. Had to do this because I'm not allowed to post links here. 🤷‍♂️)
Post not yet marked as solved
10 Replies
0 Views
Same here. Got a 3 months old MacBook Pro 13" with 4 tb hdd and 32 gig ram that's completely unusable. It's been boot looping 3 days now. Worst part is that Apple can't even set up a service appointment to get it fixed. Talked to them several times on the phone now and every time they try to set it up they receive an error they've never seen before. Got to talk to a senior advisor who reported the bug and he will reach out to me once he hears back. To be honest I'm disappointed on how this is handled. It shouldn't be this difficult to get a computer fixed.
Post not yet marked as solved
2 Replies
0 Views
I'm seeing the same issue but on iOS (iOS 14 beta 5). Here's the code I'm currently testing with, found it somewhere on the interwebz so I take no credit for it. import SwiftUI struct ShareSheetView: UIViewControllerRepresentable {     typealias Callback = (_ activityType: UIActivity.ActivityType?, _ completed: Bool, _ returnedItems: [Any]?, _ error: Error?) -> Void     let activityItems: [Any]     let applicationActivities: [UIActivity]? = nil     let excludedActivityTypes: [UIActivity.ActivityType]? = nil     let callback: Callback? = nil          func makeUIViewController(context: Context) -> UIActivityViewController {         let controller = UIActivityViewController(             activityItems: activityItems,             applicationActivities: applicationActivities)         controller.excludedActivityTypes = excludedActivityTypes         controller.completionWithItemsHandler = callback         return controller     }     func updateUIViewController(_ uiViewController: UIActivityViewController, context: Context) {         // nothing to do here     } } struct ShareSheetView_Previews: PreviewProvider {     static var previews: some View {         ShareSheetView(activityItems: [URL(string: "https://volante.io")!])     } } * Edit: I just noticed that the ivar activityItems is an array of Any, which let me send a URL wrapped in a Binding<>. This is of course not share:able and this is the reason I was seeing this bug. Maybe this is the same error you've made? To get it working I updated the code to this: ShareSheetView(activityItems: [self.filePath.unsafelyUnwrapped]) I use unsafelyUnwrapped because I know the filePath property will always be set.
Post not yet marked as solved
6 Replies
0 Views
bump 🙃
Post marked as solved
1 Replies
0 Views
Turns out it works just fine to link a static framework to the Widget extension. But preview stops working. Works fine on device though 😅
Post not yet marked as solved
5 Replies
0 Views
I found a blogpost that has a very simple and understandable example of how data to download data to the widget. For some reasons I'm not allowed to post the link on this forum though? To find it simply google ios 14 widget kit tutorial and select the top hit. The domain is swiftrocks dot com.
Post not yet marked as solved
4 Replies
0 Views
Hey!Sorry for the late response.Yeah, the app got approved and is on the App store. Works great. Must be something wonky when testing IAP in the sandbox env in a Catalyst build./C
Post not yet marked as solved
4 Replies
0 Views
I'm having the same issue. I even tried creating a US Apple ID but it still doesn't work. Now it says that my password is wrong instead. I think this is i bug 😟Will try to submit an app later today, I'll get back with an update if they approve it. (if I remember 😅)/C
Post not yet marked as solved
4 Replies
0 Views
Hi dima_beliy,Tried it on catalina beta 5 with xcode 11 beta 5 and no luck. I reported an issue using the feedback assistant and attached the logs. FB6895166
Post not yet marked as solved
4 Replies
0 Views
Sorry for the super late reply!I've created a repo with sample code here: https://github.com/JagCesar/sign-in-with-apple-exampleWhen trying to sign in on iOS it works correctly, func authorizationController(controller: ASAuthorizationController, didCompleteWithAuthorization authorization: ASAuthorization)is called as expected.When trying to sign in on a Mac Catalyst build of the same code doesn't work though, instead I get this error in the "Sign in overlay".https://github.com/JagCesar/sign-in-with-apple-example/raw/master/mac%20error.pngNot sure if this is a bug or a feature but if it is a feature it's sadly blocking all Catalyst apps from using Sign in with Apple which would be sad 😟 I was looking forward to making all my users anonymous!