Posts

Post not yet marked as solved
3 Replies
78 Views
Hi my MacBook Pro stopped updating at Big Sur although it’s not old it’s 2015. So to use the new SwiftUI features isn’t enough to upgrade to Xcode 14 or it won’t install on my machine ? Kindest Regards
Posted Last updated
.
Post marked as solved
3 Replies
92 Views
Hi Theres colors to use in SwiftUI when developing iOS App such as first line, but when I try to use the other system color placeholderText I get the error "Type Color? has no member placeholderText" why ? Text("Hello, World!").foregroundColor(.quaternaryLabel)
Posted Last updated
.
Post not yet marked as solved
2 Replies
226 Views
Hi SwiftUI updates such as Charts are available to use now or till the new OS launches in coming fall ? Kindest Regards
Posted Last updated
.
Post not yet marked as solved
1 Replies
122 Views
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
Posted Last updated
.
Post not yet marked as solved
1 Replies
216 Views
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
Posted Last updated
.
Post not yet marked as solved
1 Replies
148 Views
Hi can my App now install fonts system wide in iOS and iPadOS ? Is there any helpful links ? Kindest Regards
Posted Last updated
.
Post not yet marked as solved
0 Replies
237 Views
Hi can my App now install fonts system wide in iOS and iPadOS ? Is there any helpful links ? Kindest Regards
Posted Last updated
.
Post not yet marked as solved
0 Replies
155 Views
Hi App names on App Store is it like domain names ? For example when an App named things I can’t publish an App with same name ? And if yes how to check about available names and reserve them ? kindest Regards
Posted Last updated
.
Post marked as solved
2 Replies
909 Views
HiI have Catalina OS and Xcode 11.1 when creating new project I see the types iOS, macOS, tvOS and watchOS so shouldnt I seeipadOS as well or im missing something ?Kindest Regards
Posted Last updated
.
Post marked as solved
2 Replies
382 Views
Hi Im copying the Apple tutorial project for lists and navigation for SWiftUI but Im getting an error although my code is same as Apple project, can some one check please. Error "Cannot find 'landmarks' in scope" Kindest Regards import SwiftUI struct LandmarkRow: View {     var landmark: Landmark     var body: some View {         HStack {             Text(landmark.name)         }     } } struct LandmarkRow_Previews: PreviewProvider {     static var previews: some View {         LandmarkRow(landmark: landmarks[0])     } } import Foundation import SwiftUI import CoreLocation struct Landmark: Hashable, Codable {     var id: Int     var name: String     var park: String     var state: String     var description: String          private var imageName: String     var image: Image {         Image(imageName)     }          private var coordinates: Coordinates          var locationCoordinate: CLLocationCoordinate2D {         CLLocationCoordinate2D (             latitude: coordinates.latitude,             longitude: coordinates.longitude)     }          struct Coordinates: Hashable, Codable {         var latitude: Double         var longitude: Double     }      }
Posted Last updated
.
Post marked as solved
3 Replies
2.2k Views
HiI have a long table view but cant scroll using scroll gesture in simulator on magic mouse unless I click and drag, is there any settingsI should do or scrolling isnt supported ?Regards
Posted Last updated
.
Post not yet marked as solved
0 Replies
163 Views
Hi .. The up and down new icons isn't nice please change them and make them smaller . Kindest Regards
Posted Last updated
.