I have an iPad Pro 12.9". I am looking to make an app which can take a simultaneous audio recording from two different microphones at the same time. I want to be able to specify which of the 5 built-in microphones each audio stream should use - ideally one should be from the microphone on the left side of the iPad, and the other should be from one of the mics at the top of the iPad. Is this possible to achieve with the API?
The end goal here is to be able to use the two audio streams and do some DSP on the recordings to determine the approximate direction a particular sound comes from.
How did we do? We’d love to know your thoughts on this year’s conference. Take the survey here
Posts under iPad tag
88 Posts
Sort by:
Post
Replies
Boosts
Views
Activity
I have a mobile application accepted in the app store, and want to restrict access to ONLY iPhone. I have turned off access for macOS and visionOS, but cannot find a way to restrict access on iPads. Is there a way to do this without or with a new build?
Topic:
App Store Distribution & Marketing
SubTopic:
App Store Connect
Tags:
iPad
iPhone
Managed Settings
App is Xcode swiftUI on iPad using textview. The cursor is invisible yet it moves "underneath". How to make it visible. The app textview input is button characters and coexists with a Magic Keyboard where the cursor is visible.
I just got the iPad air 5th gen and also the Apple Pencil 2nd Gen and right when I started using the scribble function, I would get random static lines along the lettering or random parts of the screen. it only appears when I'm waiting and doesn't affect the actual things I'm writing. The iPad also automatically updated to the beta version of ios 18 because my iPhone
is also on the beta. Is anyone else having this issue?
Greetings to all!
I recently developed an called DANZUB, the hub for dancers using the Adalo no-code tool. The App from adalo was directly imported into TestFlight on App Store Connect. When I released it for review, I got a rejection that app was not supported (display scale issue) on Ipad. I have primarily designed for IPhones and I do not know how I can adjust to IPads as well. I don't have this option on Adalo.
Some said I could change the settings in XCode. But I don;t have the file, because the file was directly exported from Adalo to App Store Connect. I am unable to download the file.
Please help, I am new to developing. So close yet so far. Thanks all!!
We have a feature requirement where we need to use LazyVGrid and DropDelegate. Our view hierarchy is as follows:
Color.white.ignoresSafeArea()
VStack(spacing: 0) {
customNavigationView
ScrollView(showsIndicators: true) {
LazyVGrid(columns: columns,
alignment: .center,
spacing: 16) {
ForEach(viewModel.selectedReferences, id: \.self) { item in
ZStack {
Rectangle()
.fill(Color.yellow.opacity(0.5))
Text(item.title)
}
.frame (height: 120)
.background(Color.white)
.padding([.leading, .trailing], 4)
.overlay((draggedItem?.uuid == item.uuid && changedView) ? Color.white.opacity(0.8) : Color.clear)
.clipShape(RoundedRectangle(cornerRadius: 16, style: .continuous))
.onDrag {
initialIndex = viewModel.selectedReferences.firstIndex { $0 == item }
draggedItem = item
changedView = false
return NSItemProvider(object: String(item.uuid) as NSString)
}
.clipShape(RoundedRectangle(cornerRadius: 16, style: .continuous))
.onDrop(of: [UTType.text], delegate: DragRelocateDelegate(item: item,
listData: $viewModel.selectedReferences,
current: $draggedItem,
changedView: $changedView) { endIndex in
})
}
}
.animation(.default, value: viewModel.selectedReferences)
}
.frame(width:(UIScreen.main.bounds.width))
.onDrop(of: [UTType.text], delegate: DropOutsideDelegate(current: $draggedItem, changedView: $changedView))
bottomBarView
}
.frame(maxWidth: .infinity)
}
While performing a reshuffle, auto-scroll works within the bounds of the ScrollView content. However, according to the feature requirement, auto-scroll should also work when we place an uplifted view at the top or bottom of the view.
STEPS TO REPRODUCE
Launch the demo.
Scroll to the bottom of the LazyVGrid.
Pick any item using the DropDelegate.
Try to place that uplifted view on the custom navigation view.
Expected Result:
The ScrollView should auto-scroll.
Actual Result:
Auto-scroll is not working.
See FB13917278 (App Becomes Unresponsive for iOS/iPadOS 18 Regular Size Class Interactions When Selecting One Particular View in Sidebar).
Hi all, I'm looking for the specifications for the accelerometers used in current iPhone and iPad devices, including the sensitivity and the update rates possible.
Despite the documentation saying it's 100Hz, I've not yet found it to be better than 50Hz on any of iPhone SE, 8 or 11, nor iPad mini or Pros.
Any help would be much appreciated!
A