Post

Replies

Boosts

Views

Activity

Reply to dell uv3415w
These are the Developer Forums, where developers of apps for Apple's platforms ask each other for hints and tips on coding. Your question is more of a product support one, so I'd suggest you ask it over at the Apple Support Forums. or the Dell forums since this is regarding a Dell product. Thanks.
Aug ’24
Reply to ios 18 beta feedback
"i also like how the things are circles instead of squares." This is very much a pile of word salad. If you have genuine issues with the beta, you need to raise feedback in the normal way, as it won't really get progressed if it's only posted in these Developer Forums. You need to raise each issue separately at https://feedbackassistant.apple.com/ You can post the FB numbers here if you want, so that others can link to them.
Topic: Design SubTopic: General Tags:
Aug ’24
Reply to Username & Password
There's a bunch of ways, but the easiest and worst option is to attach the values as parameters in the url. I say 'worst' because you're sending them over plain HTTP and anyone can see them. Why not just ask for the username, pass that to the website, and let the website request the password? Or, just have a button that goes to the website where both fields are requested?
Topic: Safari & Web SubTopic: General
Aug ’24
Reply to Sound problem in ios 18 beta 4
You should probably raise this as a bug in the usual way. It won't really get progressed if it's only posted in these Developer Forums. You need to raise each issue you find separately at https://feedbackassistant.apple.com/ You can post the FB numbers here if you want, so that others can link to them.
Aug ’24
Reply to Cell service shot
You're on a beta version of iOS; there are going to be issues. You should probably raise this as a bug in the usual way. It won't really get progressed if it's only posted in these Developer Forums. You need to raise each issue you find separately at https://feedbackassistant.apple.com/ You can post the FB numbers here if you want, so that others can link to them.
Aug ’24
Reply to iPhone Doesn't Ring
The Apple Store will not help you as you're on a beta version of iOS. You should probably raise this as a bug in the usual way. It won't really get progressed if it's only posted in these Developer Forums. You need to raise each issue you find separately at https://feedbackassistant.apple.com/ You can post the FB numbers here if you want, so that others can link to them.
Topic: Design SubTopic: General
Aug ’24
Reply to Can I sync my Apple Watch series 9 with the Huawei health app?
You knew what features were available in your country when you bought the Watch. There was no deception there. It was your choice to buy the Watch. Now, you can let the Apple Watch record your health data as normal, and it will all go into the Health app. Other apps, such as Huawei Health, can request access to your Health data and you can share it with them. So yes, you can use Huawei Health IF they tie-in with the Health data on the iPhone. Does their app ask you if you want to share your Health data with it? If you've previously disallowed this, then you can go into the Settings app > Data Access & Devices, then choose the app from the "Sources" list.
Topic: Community SubTopic: Apple Developers Tags:
Aug ’24
Reply to Sheet ignoreSafeArea
Show us a screenshot of what's happening and what you want, and give us some code. What you've provided so far would solicit a response of "So? Write some code to do that." You need to help us help you. You need to tell us what you've tried so far, and give us some code to work with.
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Aug ’24
Reply to Ios 18 beta NFC issue
You should probably raise this as a bug in the usual way. It won't really get progressed if it's only posted in these Developer Forums. You need to raise each issue you find separately at https://feedbackassistant.apple.com/ You can post the FB numbers here if you want, so that others can link to them. When you raise it, please provide more information than "it doesn't work".
Topic: App & System Services SubTopic: General Tags:
Aug ’24
Reply to iOS Beta 18.1 does not install on old devices
Just because a device cannot run Apple Intelligence doesn't mean the end of the road for updates for that device is iOS 18.0. There is clearly an issue here. What shows in the beta updates in Settings > General > Software Update? You say "the system does not upgrade to 18.1", but why doesn't it? Is the 18.1 option shown but it fails to update? If so, what's the error? Or, is the 18.1 update just not listed? Honestly, you must give us the information necessary to answer your query. Saying there's an issue - but not telling us what the issue is - means we have to ask you, so it just delays everything. Remember, if you're on the iOS 18.0 beta trail you'll be offered iOS 18.0 updates. If you want to use 18.1 you have to pick 18.1 as the update path.
Aug ’24
Reply to I has api keys, but when i request appstore connect api, it return 401 NOT_AUTHORIZED.
I think you're missing the ampersand in the openssl_sign call: // Sign the data $signature = ''; if (!openssl_sign($data, &$signature, $private_key, OPENSSL_ALGO_SHA256)) { echo "Error signing the data: " . openssl_error_string(); exit; } // Encode the signature to Base64 $signature_base64 = base64_encode($signature); Because if you haven't got it, the call doesn't write to $signature so you end up base64-encoding '' in that last line.
Aug ’24
Reply to dell uv3415w
These are the Developer Forums, where developers of apps for Apple's platforms ask each other for hints and tips on coding. Your question is more of a product support one, so I'd suggest you ask it over at the Apple Support Forums. or the Dell forums since this is regarding a Dell product. Thanks.
Replies
Boosts
Views
Activity
Aug ’24
Reply to iOS 18 public beta not working
Merely visiting a country that doesn't 'support' iOS 18 betas doesn't change anything on your device, so there is some other issue here. What happens in the Settings app > General > Software Update screen? What's listed? Is there an error?
Replies
Boosts
Views
Activity
Aug ’24
Reply to ios 18 beta feedback
"i also like how the things are circles instead of squares." This is very much a pile of word salad. If you have genuine issues with the beta, you need to raise feedback in the normal way, as it won't really get progressed if it's only posted in these Developer Forums. You need to raise each issue separately at https://feedbackassistant.apple.com/ You can post the FB numbers here if you want, so that others can link to them.
Topic: Design SubTopic: General Tags:
Replies
Boosts
Views
Activity
Aug ’24
Reply to Username & Password
There's a bunch of ways, but the easiest and worst option is to attach the values as parameters in the url. I say 'worst' because you're sending them over plain HTTP and anyone can see them. Why not just ask for the username, pass that to the website, and let the website request the password? Or, just have a button that goes to the website where both fields are requested?
Topic: Safari & Web SubTopic: General
Replies
Boosts
Views
Activity
Aug ’24
Reply to Sound problem in ios 18 beta 4
You should probably raise this as a bug in the usual way. It won't really get progressed if it's only posted in these Developer Forums. You need to raise each issue you find separately at https://feedbackassistant.apple.com/ You can post the FB numbers here if you want, so that others can link to them.
Replies
Boosts
Views
Activity
Aug ’24
Reply to I’m travelling!
This doesn't make any sense. Clarify, please.
Replies
Boosts
Views
Activity
Aug ’24
Reply to Can someone explain why this state property is nil despite being updated before the other state property?
I'm guessing that's because your try! await shareConfiguration() call is asynchronous, so although you go off and try to get the share value, it hasn't returned by the time your sheet var is flipped to show it? That also means that your CloudSharingView() function is probably not returning what you think it's going to return.
Topic: UI Frameworks SubTopic: SwiftUI
Replies
Boosts
Views
Activity
Aug ’24
Reply to Cell service shot
You're on a beta version of iOS; there are going to be issues. You should probably raise this as a bug in the usual way. It won't really get progressed if it's only posted in these Developer Forums. You need to raise each issue you find separately at https://feedbackassistant.apple.com/ You can post the FB numbers here if you want, so that others can link to them.
Replies
Boosts
Views
Activity
Aug ’24
Reply to iPhone Doesn't Ring
The Apple Store will not help you as you're on a beta version of iOS. You should probably raise this as a bug in the usual way. It won't really get progressed if it's only posted in these Developer Forums. You need to raise each issue you find separately at https://feedbackassistant.apple.com/ You can post the FB numbers here if you want, so that others can link to them.
Topic: Design SubTopic: General
Replies
Boosts
Views
Activity
Aug ’24
Reply to Can I sync my Apple Watch series 9 with the Huawei health app?
You knew what features were available in your country when you bought the Watch. There was no deception there. It was your choice to buy the Watch. Now, you can let the Apple Watch record your health data as normal, and it will all go into the Health app. Other apps, such as Huawei Health, can request access to your Health data and you can share it with them. So yes, you can use Huawei Health IF they tie-in with the Health data on the iPhone. Does their app ask you if you want to share your Health data with it? If you've previously disallowed this, then you can go into the Settings app > Data Access & Devices, then choose the app from the "Sources" list.
Topic: Community SubTopic: Apple Developers Tags:
Replies
Boosts
Views
Activity
Aug ’24
Reply to Sheet ignoreSafeArea
Show us a screenshot of what's happening and what you want, and give us some code. What you've provided so far would solicit a response of "So? Write some code to do that." You need to help us help you. You need to tell us what you've tried so far, and give us some code to work with.
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Aug ’24
Reply to Swift compiler error after flutter update
Shouldn't you contact the Flutter/Firebase people about this? They probably need to update their code to work with the latest betas.
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
Aug ’24
Reply to Ios 18 beta NFC issue
You should probably raise this as a bug in the usual way. It won't really get progressed if it's only posted in these Developer Forums. You need to raise each issue you find separately at https://feedbackassistant.apple.com/ You can post the FB numbers here if you want, so that others can link to them. When you raise it, please provide more information than "it doesn't work".
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
Aug ’24
Reply to iOS Beta 18.1 does not install on old devices
Just because a device cannot run Apple Intelligence doesn't mean the end of the road for updates for that device is iOS 18.0. There is clearly an issue here. What shows in the beta updates in Settings > General > Software Update? You say "the system does not upgrade to 18.1", but why doesn't it? Is the 18.1 option shown but it fails to update? If so, what's the error? Or, is the 18.1 update just not listed? Honestly, you must give us the information necessary to answer your query. Saying there's an issue - but not telling us what the issue is - means we have to ask you, so it just delays everything. Remember, if you're on the iOS 18.0 beta trail you'll be offered iOS 18.0 updates. If you want to use 18.1 you have to pick 18.1 as the update path.
Replies
Boosts
Views
Activity
Aug ’24
Reply to I has api keys, but when i request appstore connect api, it return 401 NOT_AUTHORIZED.
I think you're missing the ampersand in the openssl_sign call: // Sign the data $signature = ''; if (!openssl_sign($data, &$signature, $private_key, OPENSSL_ALGO_SHA256)) { echo "Error signing the data: " . openssl_error_string(); exit; } // Encode the signature to Base64 $signature_base64 = base64_encode($signature); Because if you haven't got it, the call doesn't write to $signature so you end up base64-encoding '' in that last line.
Replies
Boosts
Views
Activity
Aug ’24