Posts

Post not yet marked as solved
5 Replies
47k Views
Before Catalina, we used to be able to drag the .ipa file into iTunes with a device attached.Now that iTunes is gone, dragging into 'Music' did not do anything.Thoughts?
Posted
by hishak.
Last updated
.
Post marked as solved
8 Replies
30k Views
With xcode 12 first time build fails for working project with previously installed cocoapods framework: ld: framework not found Pods_CopticFind clang: error: linker command failed with exit code 1 (use -v to see invocation) So, what changed from xcode 11.7 to 12? Tried running: pod deintegrate pod update No change, still same error. 2. Change Framework Search path to 'recursive'. No change, still same error.
Posted
by hishak.
Last updated
.
Post not yet marked as solved
2 Replies
617 Views
Using Xcode Version 12.0.1 (12A7300). Run in Simulator works without errors/warnings after adding 'arm64' to Excluded Architectures for 'Any iOS Simulator SDK'. Archive build succeeds but ends with warnings: DIBlockByRefStruct on DICompositeType is no longer supported ld: warning: ignoring invalid debug info in /Users/MyName/Library/Developer/Xcode/DerivedData/MyApp-hjxpxqxddowpfjbxwdpqomlzmfuo/Build/Intermediates.noindex/ArchiveIntermediates/MyApp/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/OneSignalNotificationServiceExtension.appex/OneSignalNotificationServiceExtension.bundle.WjNAQv/06 DerivedData Folder is empty Performed Product/Clean Build Folder Archiving by selecting 'Any iOS Device (arm64)'
Posted
by hishak.
Last updated
.
Post marked as solved
1 Replies
774 Views
Migrated from (working) swift 3 to 4 and no code change required. When I build, receive error: Property 'productsDictionary' not found on object of type 'SwagListVC *'.The .m file has the following:#import "appName-Swift.h"... if ([segue.identifier isEqualToString:@"ShowSwagList"] | [segue.identifier isEqualToString:@"ShowSwagListPad"]) { SwagListVC *destViewController = segue.destinationViewController; destViewController.title = NSLocalizedString(@"Products", @"Product List"); destViewController.productsDictionary = self.productsDict; //this is where the error is received }The swift file SwagListVC has the following:var productsDictionary = [String:[String]]() //sent via segue from DetailedTableViewControllerRandomly between clean/build will receive "appName-Swift.h" not found, but will go away. Next build will result in Property not found error. All ok in 8.3.3 (swift 3.1).
Posted
by hishak.
Last updated
.