Post

Replies

Boosts

Views

Activity

Reply to Too many swift file can affect build time?
A very big file is always bad as it is difficult to maintain if not properly structured. With Swift you can set protocol conformance in class/struct extensions and set store extension in different files. Making multiple files may enable preview/error auto search faster as the whole file does not need to be reabzlysed for each modification. BTW, when you build for archive for example, it is good to clean build folder before . I don’t think build time should be very different .
Nov ’22
Reply to New trick by HACKERS
I can’t say a lot about your problem but few hints : try disable handoff, AirPlay sharing, airdrop. You could also try to download some utility like Lulu (by Objective-See) or Little Snitch to control the output connections from your computer,
Topic: App & System Services SubTopic: Core OS Tags:
Nov ’22
Reply to Too many swift file can affect build time?
A very big file is always bad as it is difficult to maintain if not properly structured. With Swift you can set protocol conformance in class/struct extensions and set store extension in different files. Making multiple files may enable preview/error auto search faster as the whole file does not need to be reabzlysed for each modification. BTW, when you build for archive for example, it is good to clean build folder before . I don’t think build time should be very different .
Replies
Boosts
Views
Activity
Nov ’22
Reply to App won't launch
AppURLSchemeName does not seems a valid url. Should be something like scheme://something
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Nov ’22
Reply to app Crash on Testflight but export ipa install is fine
Have you check in the device log for some information ? Also xCode,iOS versions ?
Replies
Boosts
Views
Activity
Nov ’22
Reply to New trick by HACKERS
I can’t say a lot about your problem but few hints : try disable handoff, AirPlay sharing, airdrop. You could also try to download some utility like Lulu (by Objective-See) or Little Snitch to control the output connections from your computer,
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Nov ’22
Reply to An issue where content using wkwebview appears small intermittently
I would say Because. Could you add more information about what your code do. What is the html used, …?
Topic: Safari & Web SubTopic: General Tags:
Replies
Boosts
Views
Activity
Nov ’22
Reply to Picker the selection "" is invalid and does not have an associated tag, this will give undefined results
Either work with optional String either initialise selection with a default value
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Oct ’22
Reply to "Updating took more than 5 seconds" error when swiftui color scheme is different from system setting.
If this is for the preview, try to build your app before. If there are errors in others part of code it may sometimes make preview take time to rebuild.
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Oct ’22
Reply to How to measure ARM64 branch size ?
Your code produce too big object (155MB for UnityWebRequest.o) . Is this one of your module ? If yes do you use all the code inside or is there some old code or static data that can be removed ?
Replies
Boosts
Views
Activity
Oct ’22
Reply to Xcode 14 Archive Build always crashes on iOS 11
You must remove armv7 when targeting iOS 11 or higher. That because of end of support of 32 bits enabled processors. You can still build for ios10 with xCode 13.4 (xCode 13.4.1 has a limitation which prevent distribution)
Replies
Boosts
Views
Activity
Oct ’22
Reply to Critical security issue, photos are available WITHOUT access !!!
As said in answers : the user can see the picture via the picker but the app can only access the picture that the user authorises it to see. The app by itself can not go through the entire library without the user explicitly authorises it.
Replies
Boosts
Views
Activity
Oct ’22
Reply to Command CodeSign failed with a nonzero exit code on build.
Did you choose a team profile in target general tab
Replies
Boosts
Views
Activity
Oct ’22
Reply to dyld[16540]: Library not loaded: @rpath/EnsecureOTP.framework/EnsecureOTP
Depending on your iPhone/xCode version this may help you
Replies
Boosts
Views
Activity
Oct ’22
Reply to How do you make a text freeze with a state
(First Try to rename var with first letter lower case. ) . Second your code only increments a counter (sources), display sources time the same string sourceName and when you save sourceName you just reset it to empty string .
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Oct ’22
Reply to Why no Live wallpapers ios 16?
I think the main problem is that to animate Live Photos you need to long press which is now interpreted as Lock Screen modification
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Oct ’22
Reply to How to Run Task inside Footer When Visible
You can also add an element after the ForEach and add to it an onAppear, so it will only be called when user scroll to show it.
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Oct ’22