I want my apps to be run only on iPads, but seems like there is no option to deselect iPhones and iPods. Should I support all devices like iPods? It has really tiny display and that's annoying. If I can make my app to only support iPads, will there be any penalties?
Selecting any option will automatically load the page
Post
Replies
Boosts
Views
Activity
Hi,
I'm a high school student in South Korea. The student status document that my schools provide is in Korean, not English. Which means my name and school name are not in English but in Korean.
In this case, should I write my name and school name in Korea rather than English when I'm applying for Swift Student Challenge to match the name in the document?
Or, Is it okay to write my name and school name in English?
Hi,
Has anyone found a way to send a push notification based on beacon region entry/exit? Since iOS 17, CLBeacionRegion which inherits CLRegion that made this possible is now deprecated and replaced by CLMonitor.CLBeaconIdentityCondition.
CLMonitor.CLBeaconIdentityCondition does not only work properly on the latest version of iOS, it also lacks such features like sending push notifications based on region entry/exit.
Even UNLocationNotificationTrigger only accepts CLRegion which is not possible to create one using existing classes that are not deprecated.
Hi, I have AppShortcutsProvider in my app target(not as a separate extension) to support Siri command. It is working perfectly in English, but I would also like to add a localisation on it as my app supports multiple languages.
struct MyShortcuts: AppShortcutsProvider {
static let shortcutTileColor: ShortcutTileColor = .grape
static var appShortcuts: [AppShortcut] {
AppShortcut(
intent: NextClassAppIntents(),
phrases: [
"What is my next class in \(.applicationName)?",
"What's the next class in \(.applicationName)?",
"Next class in \(.applicationName)."
],
shortTitle: "Next Class",
systemImageName: "calendar.badge.clock"
)
}
}
Xcode String Catalog was doing great jobs, It also detected shortTitle automatically and added that to the Catalog. However, I don't see localisation for those phrases anywhere in the String Catalog and when I try to use String(localized: ), compiler gives me an error.
How can I properly localise AppShortcutPhrase?
Topic:
App & System Services
SubTopic:
Automation & Scripting
Tags:
Shortcuts
Localization
Intents
App Intents
I have not tested on the lower version but it seems like it is not functioning properly on iOS 17.4.
It does work with CircularGeographicCondition but not with BeaconIdentityCondition.
I am testing with this example code by Apple. I have typed proper UUID of my iBeacon device but it is never discovered.
Some other posts say that it has not been working since iOS 17.3.1.
Anyone having the same issue with me?