Posts

Post not yet marked as solved
0 Replies
495 Views
It is impossible to work. It freezes on each launch. It takes a lot of time. I've turned off my Apple Watch, disabled the connect via network. No progress on my computer. The UI does not responds, the build does not progress. I do not see any overload in the activity monitor. CPU is below 1%. It takes 1.90GB the real memory, 393GB virtual. Sometimes I see "Xcode (Not Responding)". There are other com.apple.dt.Xcode.* processes I do not know how to solve it. I'm trying to wait, I'm trying to kill Xcode,... nothing helps MacBook Pro M1, Big Sur, Xcode 12.4 Do you know how it can be fixed?
Posted
by Pavel V.
Last updated
.
Post not yet marked as solved
1 Replies
1.5k Views
'import OSLog' compiles well in all Xcode beta version including the 12.2, but makes an error "could not build Objective-C module 'OSLog'" in Xcode 12 release. Replacing with 'import os.log' works. I do not understand and cannot explain it. What is wrong?
Posted
by Pavel V.
Last updated
.
Post not yet marked as solved
1 Replies
2.2k Views
An old code detecting the full country name fails under iOS 13 (Beta 3): NSString *displayNameString = [[NSLocale currentLocale] displayNameForKey:NSLocaleCountryCode value:@"FR"];displayNameString is nil.You can check yourself this sample: NSLocale *currentLocale = [NSLocale currentLocale]; NSString *countryCode = [currentLocale objectForKey:NSLocaleCountryCode]; NSString *displayNameString = [[NSLocale currentLocale] displayNameForKey:NSLocaleCountryCode value:countryCode];Is it a bug in iOS? Is there another way to detect the country name?
Posted
by Pavel V.
Last updated
.
Post not yet marked as solved
0 Replies
464 Views
The following line always causes a crash under iOS 13:[[NSFileManager defaultManager] URLForUbiquityContainerIdentifier:nil];The error EXC_BAD_ACCESS (code=2, address=0x....)It happens for me only?I've tested ше on an iOS 12 device - works fine, no crash.Regards,Pavel
Posted
by Pavel V.
Last updated
.