Post

Replies

Boosts

Views

Activity

Reply to App not full screen on iPad mini 6
In a new Project, running on Xcode Simulator: iPad mini (6th generation) UIScreen.main.bounds.size: 744 x 1133 This is what I would expect Turn on "Requires full screen" Still 744 x 1133 (which is what I would expect I don't see where your 768 x 1024 is coming from! Xcode 13.2.1 (13C100)
Topic: App & System Services SubTopic: Hardware Tags:
Dec ’21
Reply to App not full screen on iPad mini 6
If you are seeing 1024x768 points, for an iPad Mini 6, then you have a problem somewhere. As @Claude31 says, this is not the size of an iPad Mini 6, which is 2266-by-1488 pixels, or 1133 x 744 points. You may need to double-check why you are reading the incorrect dimensions. (I have a Mini 6, if a "real" device could help in some way.)
Topic: App & System Services SubTopic: Hardware Tags:
Dec ’21
Reply to Accessing variables in one class from other class
What you are calling "classes" are actually "structs" (so you may need to read up on the basics of Swift and SwiftUI). You have two Views, but no Model or ViewModel. There does not seem to be any need to have Text( Add_new_presets.username) in your ContentView, so the simplest quick fix would be to move that into the Add_new_presets View.
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Dec ’21
Reply to Extra argument in call
Try this: let columns: [GridItem] = [GridItem(.flexible()), GridItem(.flexible()), GridItem(.flexible())] struct ContentView: View { var body: some View { GeometryReader { geometry in VStack{ Spacer() ZStack { LazyVGrid(columns: columns) { Group { Circle() .frame(width: 100, height: 100) .foregroundColor(Color(.systemBlue)) .opacity(0.5) Circle() .frame(width: 100, height: 100) .foregroundColor(Color(.systemBlue)) .opacity(0.5) Circle() .frame(width: 100, height: 100) .foregroundColor(Color(.systemBlue)) .opacity(0.5) Circle() .frame(width: 100, height: 100) .foregroundColor(Color(.systemBlue)) .opacity(0.5) Circle() .frame(width: 100, height: 100) .foregroundColor(Color(.systemBlue)) .opacity(0.5) Circle() .frame(width: 100, height: 100) .foregroundColor(Color(.systemBlue)) .opacity(0.5) } Group { Circle() .frame(width: 100, height: 100) .foregroundColor(Color(.systemBlue)) .opacity(0.5) Circle() .frame(width: 100, height: 100) .foregroundColor(Color(.systemBlue)) .opacity(0.5) Circle() .frame(width: 100, height: 100) .foregroundColor(Color(.systemBlue)) .opacity(0.5) Rectangle() .frame(width: 200, height: 80) .foregroundColor(Color(.systemBlue)) .opacity(0.5) .cornerRadius(60) .position(x: 114, y: 55) Circle() } } } Spacer() } } } }
Dec ’21
Reply to How does developer migrate apps
Some options; Un-cancel the previous developer, and get them to transfer the app to the new account (best solution) Submit the app with a new name, on a new account, and hope that Apple don't notice that it's a copy of an existing app (dodgy solution) Create an all-new app, and submit it using a new account (acceptable solution) Negotiate with Apple, to transfer the existing app without involving the original developer (unlikely solution)
Dec ’21
Reply to Where to begin? Help with the following musician app idea for personal use:
It's an interesting idea. I guess it is technically possible, but I wonder if it will work in practice? I would suggest you start with a feasibility study... If you start at the DAW end, and do all the Midi and comms work, and then it doesn't work out when the band is playing (e.g. maybe the "beat" isn't distinctive enough to follow), then you've sunk a lot of time into it. I would start with a simple Apple Watch app that gives a steady beat (at the rhythm of some song, or maybe adjustable), and see if it's something that a musician could follow, while the band is playing. On a related sidenote, I thought Apple Watch haptics might help with navigation on the motorbike, but in practice I rarely notice the buzzes. I'll be interested to hear about possible technical solutions, if other people chime in. I suggest you add a list of the main issues that would need to be solved, (break it down a bit, as the original question is a bit too big). Good luck!
Topic: App & System Services SubTopic: Core OS Tags:
Dec ’21