Post

Replies

Boosts

Views

Activity

How to receive a mix of different application defined type files through air drop
I cannot define my application defined type files like .AAA and .BBB and I can air drop multiple .AAA files or multiple .BBB files to my iPhone and use my application to received these files. but if I mix .AAA and .BBB files and air drop them to my phone. My phone always prompts " cannot receive all these items at once. So, how to receive a mix of my application defined type files through air drop? thanks
2
0
835
Aug ’23
Xcode 14 cannot debug iOS 15.5
I installed Xcode 14, and cannot debug my iPhone with iOS 15.5, the error says, these two are not compatible. in the developer website, it says, Xcode 14 can debug up to iOS 16. why is this discrepancy. thanks a lot ! the Xcode website says Xcode 14 supports iOS16 SDK Xcode VersionMinimum OS RequiredSDKArchitectureDeployment TargetsSimulatorSwiftXcode 14macOS Monterey 12.4iOS 16
1
0
894
Jul ’22
Xcode 13.1 is super slow even when typing code
Anyone knows what's going on with Xcode 13.1? after upgrading to Xcode 13.1, it runs extremely slow, especially when I type code, roughly 5 times slower, I need to type and wait for the letters to pop up one by one (literally one by one popping). BTW, performance of compiling doesn't drop much, only the performance of editing drops, that is why this is especially unacceptable . My OS is Big Sur which has been upgraded for a while. and my Mac is pretty new (5 month? ) with 16 GB memory, 8 core i9, 1T SSD. So the hardware is not so bad at all. thanks
2
0
1k
Jan ’22
CGAffineTransformScale doesn't work on iPhone12 or iOS 14
on iPhone X, or iOS 13.X , I used CGAffineTransformScale to respond to pinch gesture and enlarge photos on an UIViewController from  UIViewController UIGestureRecognizerDelegate code snippet is as follows and used to work fine, but has no effect on iOS 14 or iPhone12. Any hints?  static CGFloat sPreviousScale = 0.0;     if([recognizer state] == UIGestureRecognizerStateEnded) {         sPreviousScale = 1.0;         return;     }     CGFloat newScale = [recognizer scale] - sPreviousScale +1.0;     CGAffineTransform currentTransformation = self.mImageView.transform;     CGAffineTransform newTransform = CGAffineTransformScale(currentTransformation, newScale, newScale);     // perform the new transform     self.mImageView.transform = newTransform;   sPreviousScale = [recognizer scale];
0
0
544
Apr ’21