Search results for

“Visual Studio Maui IOS”

109,095 results found

Post

Replies

Boosts

Views

Activity

Reply to Can't export ad hoc archive due to permissions failure
I also get this. I am trying to publish my archive from XCode.This seems like an error as I shouldn't need to create a new distribution certificate as I already have one.I noticed other references to Your account does not have permission to create iOS distribution certificates refer to beta versions of XCode 8. I got it with the official XCode 8, so I downloaded XCode 7.3.1 and I still see the error.The archive was created with Xamarin Studio 6.1.1 and Xamarin.iOS 10.0.1.10
Oct ’16
Reply to DISK NOT EJECTED PROPERLY keeps popping up Big Sur 11.3.1
Same problem here also: G-Speed Studio XL disconnecting while computer is asleep. Happened rarely before but with latest update, I'm getting 10+ messages each time I log back into computer if I've been away for more than 4 hours. If gone just 2 hours, I've got 5-6 messages. It's ridiculous. Curiously, I also have a G-RAID drive that never disconnects. Both drives are Mac OS Extended Journaled. When I try to eject the Studio XL, it's cannot eject and must be forced.
Topic: App & System Services SubTopic: Core OS Tags:
Nov ’22
Xamarin IOS Simulator KeyChain
Hi Guys,I have a Xamarin Forms Application running in visual studio, I connect to my MacMini to run an IOS simulator version 10.3I am using Xamarin Auth to authenticate against Google.My android application has no problem saving the Refresh Token in the Key Store, but my IOS Application does not store the Refresh Token In the KeyChain. I am using the Xamarin Auth API Account Store object to store the account information.I am not sure if I need a developer certificate , or If i need to add something in the Entitlement.plist or add something in the Info.plist.Please help me I am a bit lost and new to IOS development.Like I said my code stores in the account information when I test it on an Android Device, but If I run the code on the IOS simulator it does notstore it.Again I am using Visual Studio 2017 connecting to a MacMini and running an IOS simulator version 10.3 to test the application.Any insight or thoughts or suggestions wo
1
0
1.9k
Jun ’17
Reply to UrlSession.shared.data returns "The network connection was lost."
Hi, I still have this issue and I have done the following tests: on a Mac app, it has the same identical issue (so I am testing on the Mac app now) I have developed a MAUI app (.NET) and deployed to the iPhone. It works fine and can download the file If I use other urls, my code works fine I have tried disabling NSAppTransportSecurity allowing NSAllowsArbitraryLoads. I can download http content, but this content is still wrong I have tested on this url, that sends a redirect, and it also works fine: https://www.backade.com/22Z9H358/SZCPXRW/?uid=2297 So the issue is just between the Swift libraries and this website. Other websites (even in Swift) or other languages (.NET on both Windows and iOS) work fine Clearly both Chrome and Safari can download this file. Can anyone give me additional tips trying to fix this issue? Regards, Damiano
Topic: App & System Services SubTopic: General Tags:
May ’23
Reply to Different UI layout for iPhone X family
>I need to have different layout for iPhone X family of devices for one view controller.Perhaps if you discussed why, someone might have specific suggestions.Note one option is via a device idiom...In the mean time, see the docs:https://developer.apple.com/design/human-interface-guidelines/ios/visual-design/adaptivity-and-layout/https://developer.apple.com/design/
Topic: UI Frameworks SubTopic: UIKit Tags:
Nov ’18
Reply to XCode26 and Icon Composer woes
My understanding is if you are happy with your existing icons, and the way they look on iOS/macOS 26 - there is no need to change. I created an icon file for my existing icons and built with the latest Xcode 26.1RC: 5Mb was added to each app (which is significant if your existing app size is only 10Mb), iOS 18 icons looked wrong (appeared to be using the clear icon for the default), the end result on iOS/macOS 26 was visually the same as using my pre-existing (non glass) icons. So no useful benefit.
Nov ’25
Reply to Apple Pay JS: onpaymentauthorized only getting isTrusted
Looks like you are tryning to visualize event in this way: session.onpaymentauthorized = function (event) { console.log(JSON.stringify(event)) } this would shows only {isTrusted:true} you can't stringify event: https://stackoverflow.com/questions/11547672/how-to-stringify-event-object try visualize payment responce from envent directly: console.log(JSON.stringify(event.payment))
Aug ’22
Reply to LaCie 6Big - M1 Mac Mini Driver
Hi there, I’m also having the same issue with LaCie 6Big, on M1 Ultra Mac Studio. Has anyone found a solution to this? Getting around 50mb read and about 400mb write.
Topic: App & System Services SubTopic: Hardware Tags:
Replies
Boosts
Views
Activity
Jun ’22
Reply to Can't export ad hoc archive due to permissions failure
I also get this. I am trying to publish my archive from XCode.This seems like an error as I shouldn't need to create a new distribution certificate as I already have one.I noticed other references to Your account does not have permission to create iOS distribution certificates refer to beta versions of XCode 8. I got it with the official XCode 8, so I downloaded XCode 7.3.1 and I still see the error.The archive was created with Xamarin Studio 6.1.1 and Xamarin.iOS 10.0.1.10
Replies
Boosts
Views
Activity
Oct ’16
Reply to DISK NOT EJECTED PROPERLY keeps popping up Big Sur 11.3.1
Same problem here also: G-Speed Studio XL disconnecting while computer is asleep. Happened rarely before but with latest update, I'm getting 10+ messages each time I log back into computer if I've been away for more than 4 hours. If gone just 2 hours, I've got 5-6 messages. It's ridiculous. Curiously, I also have a G-RAID drive that never disconnects. Both drives are Mac OS Extended Journaled. When I try to eject the Studio XL, it's cannot eject and must be forced.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Nov ’22
Reply to System text always appears to be Bold in Japanese
Can you please file a bug for this, and attach a screenshot of the visual issue?
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Jun ’16
Xamarin IOS Simulator KeyChain
Hi Guys,I have a Xamarin Forms Application running in visual studio, I connect to my MacMini to run an IOS simulator version 10.3I am using Xamarin Auth to authenticate against Google.My android application has no problem saving the Refresh Token in the Key Store, but my IOS Application does not store the Refresh Token In the KeyChain. I am using the Xamarin Auth API Account Store object to store the account information.I am not sure if I need a developer certificate , or If i need to add something in the Entitlement.plist or add something in the Info.plist.Please help me I am a bit lost and new to IOS development.Like I said my code stores in the account information when I test it on an Android Device, but If I run the code on the IOS simulator it does notstore it.Again I am using Visual Studio 2017 connecting to a MacMini and running an IOS simulator version 10.3 to test the application.Any insight or thoughts or suggestions wo
Replies
1
Boosts
0
Views
1.9k
Activity
Jun ’17
Reply to WatchConnectivity Background
Use WCSession.transferUserInfo(_:) to send data that can be received in background. Implement session(_:didReceiveUserInfo:) in the delegate to receive this kind of messages. — WindowsMEMZ @ Darock Studio
Replies
Boosts
Views
Activity
Oct ’24
Make an app for visually impaired person-Are there any restrictions and maximum height and front size for tab bar and navigation bar.
hello, i want to published and make an apps for visually impaired person, and i would like to enlarge the height and the front size of the tab bar and navigation bar.i want to know are there any restrictions and maximum height and front size of it?
Replies
1
Boosts
0
Views
318
Activity
Apr ’17
Reply to Localized languages of bundle metadata in AppStoreConnect is incomplete
Here are some screen captures to help visualize things better:
Replies
Boosts
Views
Activity
Nov ’23
Reply to UrlSession.shared.data returns "The network connection was lost."
Hi, I still have this issue and I have done the following tests: on a Mac app, it has the same identical issue (so I am testing on the Mac app now) I have developed a MAUI app (.NET) and deployed to the iPhone. It works fine and can download the file If I use other urls, my code works fine I have tried disabling NSAppTransportSecurity allowing NSAllowsArbitraryLoads. I can download http content, but this content is still wrong I have tested on this url, that sends a redirect, and it also works fine: https://www.backade.com/22Z9H358/SZCPXRW/?uid=2297 So the issue is just between the Swift libraries and this website. Other websites (even in Swift) or other languages (.NET on both Windows and iOS) work fine Clearly both Chrome and Safari can download this file. Can anyone give me additional tips trying to fix this issue? Regards, Damiano
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
May ’23
Reply to Can I accept payment on my website
Here we go again!(Freeze frame, end theme music plays while credits roll)For the latest discussion on this, go here(This show has been filmed in front of a live studio audience).
Topic: App & System Services SubTopic: StoreKit Tags:
Replies
Boosts
Views
Activity
Jan ’19
Reply to Different UI layout for iPhone X family
>I need to have different layout for iPhone X family of devices for one view controller.Perhaps if you discussed why, someone might have specific suggestions.Note one option is via a device idiom...In the mean time, see the docs:https://developer.apple.com/design/human-interface-guidelines/ios/visual-design/adaptivity-and-layout/https://developer.apple.com/design/
Topic: UI Frameworks SubTopic: UIKit Tags:
Replies
Boosts
Views
Activity
Nov ’18
Reply to xcframework - no disclosure triangle in Xcode, can't view headers
Hi there is definitely a bug in Xcode 11 where many of the builtin GUI controls display incorrectly,I found that this graphic corruption only happens when the app is debugged. If I launch the app from the Dock, the visual corruption is gone.So I have learned to ignore the corrupted appearance (or missing visual features) when debugging.
Replies
Boosts
Views
Activity
Dec ’19
Reply to XCode26 and Icon Composer woes
My understanding is if you are happy with your existing icons, and the way they look on iOS/macOS 26 - there is no need to change. I created an icon file for my existing icons and built with the latest Xcode 26.1RC: 5Mb was added to each app (which is significant if your existing app size is only 10Mb), iOS 18 icons looked wrong (appeared to be using the clear icon for the default), the end result on iOS/macOS 26 was visually the same as using my pre-existing (non glass) icons. So no useful benefit.
Replies
Boosts
Views
Activity
Nov ’25
Reply to Apple Pay JS: onpaymentauthorized only getting isTrusted
Looks like you are tryning to visualize event in this way: session.onpaymentauthorized = function (event) { console.log(JSON.stringify(event)) } this would shows only {isTrusted:true} you can't stringify event: https://stackoverflow.com/questions/11547672/how-to-stringify-event-object try visualize payment responce from envent directly: console.log(JSON.stringify(event.payment))
Replies
Boosts
Views
Activity
Aug ’22
Reply to UILabel truncates inside UIStackView?
For some reason the forums aren't uploading my screenshots. So I guess visualize truncated labels. :-)
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Aug ’15