Search results for

“Visual Studio Maui IOS”

109,079 results found

Post

Replies

Boosts

Views

Activity

Reply to RoomCapture Visualizer
Hi, the Visualizer in the WWDC video should be a custom class you create on your own to handle the visualization of CapturedRoom from the delegate callbacks. It's there only for illustration purpose, but not part of the API. Thanks.
Topic: Graphics & Games SubTopic: RealityKit Tags:
Jun ’22
Reply to ARkit tracking performance with small marker
I'm stuck with the same question: I want to keep markers as small as possible, since I am not necessarily overdrawing them by AR visuals, and furthermore to minimize their visual impact on bystanding audience (in a public space).My best guess is that ARKit saves processing power at runtime by limiting image recognition algorithms to a minimum on-screen size for marker visuals to be considered.
Topic: Spatial Computing SubTopic: ARKit Tags:
Aug ’18
Visual Novel Game Rejection due to Design 4.3 (a) Spam
Hello, My company is developing an interactive story game (or a visual novel with multiple ongoing and updated stories). We've added a few unique features to add value to our proposal, but we have been rejected due to Design 4.3 (0) Spam two times now. When trying to get more information from the message from the App Review team, we're only getting what we believe are automated responses Here's the message to our first submission: Guideline 4.3(a) - Design - Spam We noticed your app shares a similar binary, metadata, and/or concept as apps submitted to the App Store by other developers, with only minor differences. Submitting similar or repackaged apps is a form of spam that creates clutter and makes it difficult for users to discover new apps. Next Steps Since we do not accept spam apps on the App Store, we encourage you to review your app concept and submit a unique app with distinct content and functionality After the first rejection, we looked into the game and make substantial changes to the cor
3
0
438
Oct ’24
Reply to Is Xcode the right programming tool for me?
I too came from Visual Basic. Xcode has many of those simple drag and drop features (using Storyboard or just an Xib file) that Visual Basic has so in that sense you will be able to do may of those things. Regarding the database - if you can do it in Excel you can do it in Xcode using a simple NSDictionary. Regarding multiple people intreracting with a single data source - you can do that with Apple's CloudKit. If you are using CloudKit you also have the 'database' functions of CloudKit (sort, filter, etc.). I would expllore simply using Xcode and CloudKit and see if they address all of your needs. But - you will be limited to iOS devices. If you want Android that's a different question.
Feb ’17
Reply to How to reposition MKMapView's legal label in iOS 11?
1. Constrain the bottom of your map view to the bottom of its superview (the view controller's view).2. Constrain the bottom of your visual effect view to the bottom of its superview (the view controller's view).3. Set the bottom safe area to include the visual effect view's height. Like this:override func viewDidLoad() { super.viewDidLoad() additionalSafeAreaInsets = UIEdgeInsetsMake(0.0, 0.0, bottomView.bounds.height, 0.0) // If you need support for iOS 10, you should use bottomLayoutGuide instead. }Here's a screenshot of what this looks like (remove the space in the URL):https ://postimg.org/image/8pee2b52z/
Topic: Programming Languages SubTopic: Swift Tags:
Sep ’17
Visual Format Language calculator UI improvements
I know that it's woefully inefficient and doesn't quite visually match up, but I really like the idea of VFL and wanted to try to recreate a standard simplified calculator UI with it.The code below does sort of resemble the UI (no logic to the buttons) but I would care to know any improvements to scale better without using hard coded points, just constraints so that it scales devices independently (I am especially looking for a loop to cut down on UI control declarations):@IBDesignable class calcButtons: UIButton { override init(frame: CGRect) { super.init(frame: frame) calcButtons() } required init?(coder: NSCoder) { super.init(coder: coder) calcButtons() } private func calcButtons() { let calcPlus = UIButton() calcPlus.translatesAutoresizingMaskIntoConstraints = false calcPlus.setTitle(+, for: .normal) calcPlus.setTitleColor(UIColor.black, for: .normal) calcPlus.setTitleColor(UIColor.white, for: .highlighted) calcPlus.backgroundColor = UIColor.orange addSubview(calcPlus) let calcSubtract = UIButton
Topic: UI Frameworks SubTopic: UIKit Tags:
4
0
1.4k
May ’18
Reply to Devices
Start by reading the Adaptivity and Layout - https://developer.apple.com/design/human-interface-guidelines/ios/visual-design/adaptivity-and-layout/ section of the Human Interface Guidelines. It outlines the principles you should understand, and then leads you to the specific APIs and programming guides to implement an adaptive layout.
Jan ’21
Reply to RoomCapture Visualizer
Hi, the Visualizer in the WWDC video should be a custom class you create on your own to handle the visualization of CapturedRoom from the delegate callbacks. It's there only for illustration purpose, but not part of the API. Thanks.
Topic: Graphics & Games SubTopic: RealityKit Tags:
Replies
Boosts
Views
Activity
Jun ’22
Reply to Beta 3 - Visual Voicemail
Having same issue on new iphone x with sprint. They say its an apple problem. I've tried all the solutions and still have no visual voicemail or answers form either company. Running ios 11.2 beta 3 on Iphone X with Sprint.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Nov ’17
Reply to Flutter error: "CocoaPods not installed or not in valid state."
For me this was resolved by opening the Android studio from terminal open /Applications/Android Studio.app
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Feb ’22
Reply to Opening Safari with URL via terminal also opens URL in default browser (Chrome)
I have the same issue in Ventura 13.1 on my Mac Studio. Seems like a bug to me.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Feb ’23
Reply to ARkit tracking performance with small marker
I'm stuck with the same question: I want to keep markers as small as possible, since I am not necessarily overdrawing them by AR visuals, and furthermore to minimize their visual impact on bystanding audience (in a public space).My best guess is that ARKit saves processing power at runtime by limiting image recognition algorithms to a minimum on-screen size for marker visuals to be considered.
Topic: Spatial Computing SubTopic: ARKit Tags:
Replies
Boosts
Views
Activity
Aug ’18
Visual Novel Game Rejection due to Design 4.3 (a) Spam
Hello, My company is developing an interactive story game (or a visual novel with multiple ongoing and updated stories). We've added a few unique features to add value to our proposal, but we have been rejected due to Design 4.3 (0) Spam two times now. When trying to get more information from the message from the App Review team, we're only getting what we believe are automated responses Here's the message to our first submission: Guideline 4.3(a) - Design - Spam We noticed your app shares a similar binary, metadata, and/or concept as apps submitted to the App Store by other developers, with only minor differences. Submitting similar or repackaged apps is a form of spam that creates clutter and makes it difficult for users to discover new apps. Next Steps Since we do not accept spam apps on the App Store, we encourage you to review your app concept and submit a unique app with distinct content and functionality After the first rejection, we looked into the game and make substantial changes to the cor
Replies
3
Boosts
0
Views
438
Activity
Oct ’24
Reply to Is Xcode the right programming tool for me?
I too came from Visual Basic. Xcode has many of those simple drag and drop features (using Storyboard or just an Xib file) that Visual Basic has so in that sense you will be able to do may of those things. Regarding the database - if you can do it in Excel you can do it in Xcode using a simple NSDictionary. Regarding multiple people intreracting with a single data source - you can do that with Apple's CloudKit. If you are using CloudKit you also have the 'database' functions of CloudKit (sort, filter, etc.). I would expllore simply using Xcode and CloudKit and see if they address all of your needs. But - you will be limited to iOS devices. If you want Android that's a different question.
Replies
Boosts
Views
Activity
Feb ’17
Reply to How to reposition MKMapView's legal label in iOS 11?
1. Constrain the bottom of your map view to the bottom of its superview (the view controller's view).2. Constrain the bottom of your visual effect view to the bottom of its superview (the view controller's view).3. Set the bottom safe area to include the visual effect view's height. Like this:override func viewDidLoad() { super.viewDidLoad() additionalSafeAreaInsets = UIEdgeInsetsMake(0.0, 0.0, bottomView.bounds.height, 0.0) // If you need support for iOS 10, you should use bottomLayoutGuide instead. }Here's a screenshot of what this looks like (remove the space in the URL):https ://postimg.org/image/8pee2b52z/
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Sep ’17
Reply to Lost TouchID on M1 iMac after installing Ventura
No solution found. I just happened to me yesterday. Studio Max M1 running Ventura 13.4.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Jun ’23
Visual Format Language calculator UI improvements
I know that it's woefully inefficient and doesn't quite visually match up, but I really like the idea of VFL and wanted to try to recreate a standard simplified calculator UI with it.The code below does sort of resemble the UI (no logic to the buttons) but I would care to know any improvements to scale better without using hard coded points, just constraints so that it scales devices independently (I am especially looking for a loop to cut down on UI control declarations):@IBDesignable class calcButtons: UIButton { override init(frame: CGRect) { super.init(frame: frame) calcButtons() } required init?(coder: NSCoder) { super.init(coder: coder) calcButtons() } private func calcButtons() { let calcPlus = UIButton() calcPlus.translatesAutoresizingMaskIntoConstraints = false calcPlus.setTitle(+, for: .normal) calcPlus.setTitleColor(UIColor.black, for: .normal) calcPlus.setTitleColor(UIColor.white, for: .highlighted) calcPlus.backgroundColor = UIColor.orange addSubview(calcPlus) let calcSubtract = UIButton
Topic: UI Frameworks SubTopic: UIKit Tags:
Replies
4
Boosts
0
Views
1.4k
Activity
May ’18
Reply to Beta 3 - Visual Voicemail
I had the issue as well. Didn't do any resets. Just dialed in to my visual voicemail and listened to one message. Then hung up and then all of my visual voicemails showed up.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Jul ’17
Reply to Devices
Start by reading the Adaptivity and Layout - https://developer.apple.com/design/human-interface-guidelines/ios/visual-design/adaptivity-and-layout/ section of the Human Interface Guidelines. It outlines the principles you should understand, and then leads you to the specific APIs and programming guides to implement an adaptive layout.
Replies
Boosts
Views
Activity
Jan ’21
Reply to Swipe to go back still broken with Zoom navigation transition.
@DTS Engineer I hope you and the SwiftUI team are aware of the severity of this issue and the massive scale of apps it is affecting. I sincerely hope you treat this with a sense of urgency since there has been two dot releases for iOS 26 and this very apparent and visual bug still has not been resolved. Thanks!
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Dec ’25
Reply to Please HELP. - UIViewController dealloc bug. I need help!
Could you share a minimum sample project/code which can reproduce this problem? — WindowsMEMZ @ Darock Studio
Topic: UI Frameworks SubTopic: General Tags:
Replies
Boosts
Views
Activity
Oct ’24
Reply to Indent Guide Lines In Xcode
I writing code to earn Money I have Android und Android Studio with more and user friendly Tools
Replies
Boosts
Views
Activity
Aug ’23