Posts

Post not yet marked as solved
0 Replies
366 Views
In the app, when logged into Game Center and moving the app to the background and then returning to the foreground, the Game Center login message is displayed at the top every time. Before iOS 17, this message was only shown at the initial login and app launch. However, from iOS 17, this message is displayed during the transition from background to foreground. Is this an intended feature or a bug?
Posted
by herohjk.
Last updated
.
Post not yet marked as solved
1 Replies
1.7k Views
As the title suggests, I'm planning to use a combination of Swift and C++ in our application. Our app currently supports iOS 11 as the minimum version, but we're planning to update Xcode in the future and elevate our minimum version to iOS 12. With that in mind, can an app with iOS 12 as its minimum target use Swift 5.9? Additionally, is it possible for an app targeting at least iOS 12 to use a mix of Swift and C++?
Posted
by herohjk.
Last updated
.
Post not yet marked as solved
2 Replies
423 Views
Just like the title. In Swift, when you have a single long String like this: let description = "title - \(myItem.title) subtitle - \(myItem.subtitle) text - \(myItem.text) price - \(myItem.price)" For readability, we break it down like this: let description = "title - \(myItem.title) " + "subtitle - \(myItem.subtitle) " + "text - \(myItem.text) " + "price - \(myItem.price)" Because it is an example, there are only about 4 pieces divided, but in actual use, there may be dozens of pieces, You may end up calling this code hundreds of times. Will there be any performance impact (speed, memory footprint, memory allocation and deallocation, etc.)? Or will it do something smarter at the compile stage?
Posted
by herohjk.
Last updated
.
Post not yet marked as solved
1 Replies
1.5k Views
Docc is support multiple language comments? I need to use Docc to document my project. The document for the project I will be working on is in a situation where both Korean and English are required. If multiple language comments support is available, can I know the related materials?
Posted
by herohjk.
Last updated
.