"Download Container" will not download folders that do not contain any files.
That is, if you have a folder structure like this:
Application Support/work1/(no file)
Application Support/work2/test.txt
When you execute "Download Container", the following configuration will be downloaded.
Application Support/work2/test.txt
The work1 folder has disappeared.
This is also true for "Replace Container".
If you execute "Replace Container" with the same data configuration, the data will be entered into the app with the following configuration.
Application Support/work2/test.txt
The work1 folder has disappeared.
This issue is having a significant impact on development and debugging.
Since I am experiencing this problem with XCode 16, I use XCode 13 when performing "Download Container" and "Replace Container".
(XCode13, XCode14 works fine)
This problem is probably an embedded problem from XCode15 or XCode16, so I would appreciate an early resolution.
Post
Replies
Boosts
Views
Activity
I am creating an application for ios.
I include two static libraries in my application.
However, if the same function name exists in two static libraries, the function that was first included as a library will be called.
(Static library written in Objective-c)
Is there any way to solve this?
Is it possible to solve it by using framework?
Note that the function names of the library are specified by the standard, so the function names cannot be changed.
Best regards.
start XCode.
select "Create a new Xcode pjoject".
select "iOS" tab.
"Static Library" templete is exist, but "Dynamic Library" is not exist.
I want to create dylib file for ios.
XCode doesn't have templates, can I create a dylib file for ios?
Please tell me how to create it.
Best regards.
I have a screen rotation problem on iOS16.
I found that it can be improved by adding the following processing.
if (@available(iOS 16.0, *)) {
UIWindowScene *windowScene = (UIWindowScene *)[[[UIApplication sharedApplication] connectedScenes] allObjects].firstObject;
UIViewController *rootView = [[windowScene keyWindow] rootViewController];
[rootView setNeedsUpdateOfSupportedInterfaceOrientations];
}
It worked fine when built with XCode14.
But it also worked fine when built with XCode13.
Why is this?
Can "setNeedsUpdateOfSupportedInterfaceOrientations" be used without XCode14?