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
can my App now install fonts system wide in iOS and iPadOS ? Is there any helpful links ?
Kindest Regards
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
Topic:
App Store Distribution & Marketing
SubTopic:
App Store Connect
Tags:
App Review
App Store Connect
Hi
Whats the best way to paste images, links, zip files in the forums ?
Kindest Regards
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
}
}
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