Post

Replies

Boosts

Views

Activity

Reply to Is Objective - C Dead?
It depends what you mean by "viable". Is it possible to learn and write a new app in Objective-C? Yes It it worth it? No Unless you have specific reasons for using Objective-C (such as an existing code-base, or a client who requires it). Swift has many improvements, and is a far better language.
Topic: Programming Languages SubTopic: General Tags:
Dec ’21
Reply to Licensing options for developing SDK framework
It depends entirely on the vendor of the SDK that you are using, they set their own licensing terms. The point here being that they will not be licensing for a single app, but for all the apps that will be created using your SDK (which uses their SDK). You will need to talk to the vendor. Of course, if you are prepared to say who the vendor is, it is possible that other Developers here on the forum may be able to comment on their use of that same SDK?
Topic: App & System Services SubTopic: General Tags:
Dec ’21
Reply to iOS app in background for photo uploads
This is an interesting idea, but I think it cannot be made to work. At first glance, a number of issues come to mind... Photo Library The Photo Library does not provide a feature where it sends a system-wide notification that a new photo has been added. PHPhotoLibraryChangeObserver This refers specifically to assets or collections that your app fetches. It can be used to synchronize a running app with the Photo Library. Background Modes The background operation of iOS apps is very limited. The available Background Modes do not cover anything like this use-case. Background Uploading On receiving a notification while backgrounded, it is not possible to upload data without some user intervention (e.g. by responding to the notification) Background Termination Backgrounded apps can be removed from memory at any time, when iOS considers that it needs available resources for other tasks. In this case, your app would just stop working (invisibly, i.e. with no warning).
Dec ’21
Reply to How can a developer request a development certificate?
App Store Connect > Users and Access Role "Developer" Can create development certificates NOTE: This requires access to Certificates, Identifiers & Profiles, granted in Users and Access (see below) Can not create distribution certificates Can not create Developer ID certificates Reference: https://developer.apple.com/support/roles/ Users and Access (for a particular Developer)... ...check this:
Dec ’21
Reply to QR Code Iphone 13 pro
It could be a bad QR code. Share it here, then we can see if it works.
Topic: App & System Services SubTopic: Hardware Tags:
Replies
Boosts
Views
Activity
Dec ’21
Reply to Cannot update view
Try class SignInController: ObservableObject {     @Published var signedIn: Bool = false } (By the way, in MainView, I think your ZStack should be a VStack)
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Dec ’21
Reply to What is wrong with my code ?
Friendly Hint: paste your code (using "Paste and Match Style") into a code-block, then it will look nice, and people will be able to read it.
Replies
Boosts
Views
Activity
Dec ’21
Reply to Is Objective - C Dead?
It depends what you mean by "viable". Is it possible to learn and write a new app in Objective-C? Yes It it worth it? No Unless you have specific reasons for using Objective-C (such as an existing code-base, or a client who requires it). Swift has many improvements, and is a far better language.
Topic: Programming Languages SubTopic: General Tags:
Replies
Boosts
Views
Activity
Dec ’21
Reply to URLSession.uploadTask withFile When can file be deleted
Did you solve this, @CentricsDev?
Replies
Boosts
Views
Activity
Dec ’21
Reply to Dark mode keeps triggering error messages
Did you solve this, @BDCConfused?
Replies
Boosts
Views
Activity
Dec ’21
Reply to Question about IOHIDRequestAccess
Did you make any progress on this, @mise?
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Dec ’21
Reply to iOS app in background for photo uploads
Was that useful to know, @Stealthrt?
Replies
Boosts
Views
Activity
Dec ’21
Reply to Licensing options for developing SDK framework
It depends entirely on the vendor of the SDK that you are using, they set their own licensing terms. The point here being that they will not be licensing for a single app, but for all the apps that will be created using your SDK (which uses their SDK). You will need to talk to the vendor. Of course, if you are prepared to say who the vendor is, it is possible that other Developers here on the forum may be able to comment on their use of that same SDK?
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
Dec ’21
Reply to iOS app in background for photo uploads
This is an interesting idea, but I think it cannot be made to work. At first glance, a number of issues come to mind... Photo Library The Photo Library does not provide a feature where it sends a system-wide notification that a new photo has been added. PHPhotoLibraryChangeObserver This refers specifically to assets or collections that your app fetches. It can be used to synchronize a running app with the Photo Library. Background Modes The background operation of iOS apps is very limited. The available Background Modes do not cover anything like this use-case. Background Uploading On receiving a notification while backgrounded, it is not possible to upload data without some user intervention (e.g. by responding to the notification) Background Termination Backgrounded apps can be removed from memory at any time, when iOS considers that it needs available resources for other tasks. In this case, your app would just stop working (invisibly, i.e. with no warning).
Replies
Boosts
Views
Activity
Dec ’21
Reply to SwiftUi NavigationLink three view and hidden bar but not work on third
Can you be more clear about what you are expecting to happen, and what you are actually seeing?
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Dec ’21
Reply to Cannot find `ArchiveByteStream` in scope
When you tested this code did you chose a simulator or a real device? The original question did not specify a platform. I tested on macOS.
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Dec ’21
Reply to How can a developer request a development certificate?
App Store Connect > Users and Access Role "Developer" Can create development certificates NOTE: This requires access to Certificates, Identifiers & Profiles, granted in Users and Access (see below) Can not create distribution certificates Can not create Developer ID certificates Reference: https://developer.apple.com/support/roles/ Users and Access (for a particular Developer)... ...check this:
Replies
Boosts
Views
Activity
Dec ’21
Reply to touchesBegan for tvOS in the game?
touchesBegan:withEvent: is available on tvOS 9.0+
Topic: Graphics & Games SubTopic: SpriteKit Tags:
Replies
Boosts
Views
Activity
Dec ’21
Reply to Xcode 13.2 uses 100% CPU when launch
This issue exists only in Xcode 13.2. So it is a bug. I suggest you report it using Feedback Assistant, and post the reference number here.
Replies
Boosts
Views
Activity
Dec ’21