Hi
can my App now install fonts system wide in iOS and iPadOS ? Is there any helpful links ?
Kindest Regards
Selecting any option will automatically load the page
Post
Replies
Boosts
Views
Activity
Hi
so based on Apple UIG I should use degrees of transparency to get degrees of gray ? So to apply that on a label for example or text I make them black color then apply transparency on the control element it self ?
kindest Regards
Hi
suppose I have 2 buttons button1 and button2 and when button2 is tapped I want to change button1 colors and it’s text, how to do that ? How to reference to button1 and change its modifiers ?
now also suppose button one was a text such as Text(“Some Text”), how to change text shown
between brackets when button2 is tapped ?
Kindest Regards
Hi
what kit I should use to install a font system wide in iOS & iPadOS ! Anybody have an idea how ? Adobe Creative App have such feature.
Kindest Regards
Hi
SwiftUI updates such as Charts are available to use now or till the new OS launches in coming fall ?
Kindest Regards
Hi
Im trying to run my Xcode App on physical iPad but getting the attached screen message, this happened recently before few months I didn't get it. My iPad is 9.7" Pro with iPadOS 15.6. Mac is NBP 2015 with macOS 11.5.1 and Xcode Version 13.2.1. is there a fix ?
Hi,
In Xcode 15 is command click on an item in the preview canvas feature removed ? it doesn't work for me ?
Kindest Regards
Hi,
Is it recommended to use data and SwiftUI controls inside the NavigationStack or to use views as before ? I think views is easier to maintain or Im missing something ? cause I hear that the new way is to use data directly ?
Kindest Regards
Hi,
The fitness features such as distance moved, steps, calories burned is it in HealthKit or in a different kit ? couldn't find any API in HealthKit ?
Also for example how can Apple Watch distinguish that this amount of steps was walked and not moved by a slow car or a scoter for example ?
Kindest Regards
Hi,
The Car Kit Apple introduced recently is it a separate OS or what ? I mean how can I develop and deploy a whole new designed Car Info System and dashboards same as the designs Apple published last year ?
Kindest Regards
Hi,
When I use local Xcode source control and not connect to a cloud git I don't have the ability to merge branches ? if possible can you show hw please ?
Also other features such as push, pull, cherry Pick isn't supported ?
Kindest Regards
Hi,
How to catch the keyboard language changing in iOS when use select a different language from keyboard, and how to know what language he selected and if its right to left ? in SwiftUI App.
Kindest Regards
Hi,
I use the elbow code to toggle between English and Arabic locale, but the alert message always shows en_QA which is English I guess even when locale changed to Arabic ? why is that ?
struct arview: View {
@Environment(\.locale) private var locale
@State private var showingAlert = false
@State private var isLTR: Bool = false
@State private var txtValue = ""
var body: some View {
VStack{
Text("Note Title")
TextField("Place Holder", text: $txtValue)
Button("Change Locale") {
isLTR.toggle()
}
Button("Show Alert") {
showingAlert = true
}
.alert("Current Locale: \(locale.identifier)", isPresented: $showingAlert) {
Button("OK", role: .cancel) { }
}
}
.padding()
.environment (\.locale, isLTR ? Locale.init(identifier: "en" ) : Locale.init(identifier: "ar" ))
}
}
Hi,
How to reducing default space between tool bar items, it seems little to much.
Kindest Regards
Hi,
How to remove a background color from segmented control ? in SwiftUI.
Kindest Regards