Post

Replies

Boosts

Views

Activity

Reply to Image Renderer not Working
It's easier to answer your question if you share your code, then we know what you are asking about. Also, what platform, iOS or Mac, or other? Also also, what language, Objective-C or Swift, or other? Perhaps you are using Swift on iOS, and you mean UIGraphicsImageRenderer? If so, did you remember to import CoreGraphics?
Oct ’22
Reply to Submit app to Appstore in the name of my client
Your client should take control of their app, and host it on their own developer account. They should add you to their Development Team, with the appropriate permissions. (e.g. to upload the app, create certificates, distribute using TestFlight, etc.) In very rare cases, you might want to host a client app on your own account. (I have only done this once, and I don't recommend it.) Also, bear in mind that transferring apps (e.g. from your account, to a client's account), while possible, can have a long-term effect on your own account. (You will lose the benefits of Apple's Small Business Program, if you are part of that.) If they just want you to send them the app: In this case, you simply send them the app's source (typically as a zipped archive), with all supporting resources and documentation.
Oct ’22
Reply to How To Zoom In Using northeast, southwest and center coordinate In Swiftui Map
Try this: static func getPARCoordinateRegion() -> MKCoordinateRegion { let ph = getPHCountryPlaceMark() let center = CLLocationCoordinate2D(latitude: ph.centerLatitude, longitude: ph.centerLongitude) let latitudeDelta = abs(ph.northEastLatitude - ph.southWestLatitude) let longitudeDelta = abs(ph.northEastLongitude - ph.southWestLongitude) let span = MKCoordinateSpan(latitudeDelta: latitudeDelta, longitudeDelta: longitudeDelta) let region = MKCoordinateRegion(center: center, span: span) return region }
Oct ’22