Posts

Post not yet marked as solved
1 Replies
182 Views
There is a field "Feedback Email" on the TestFlight and we are expecting to receive an email when a tester submits feedback. Is there any configuration that I need to check to be able to receive emails when a tester submits feedback?
Posted Last updated
.
Post not yet marked as solved
4 Replies
1.5k Views
Unable to find where this is happening... *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[NSCountableTextLocation compare:] receiving unmatching type (null)' *** First throw call stack: ( 0 CoreFoundation 0x000000012083f88a __exceptionPreprocess + 242 1 libobjc.A.dylib 0x0000000117674894 objc_exception_throw + 48 2 CoreFoundation 0x000000012083f768 -[NSException initWithCoder:] + 0 3 UIFoundation 0x000000014ee60aa5 -[NSCountableTextLocation compare:] + 200 4 UIFoundation 0x000000014ee25919 -[NSTextLayoutManager _invalidateLayoutForTextRange:hard:] + 1573 5 UIFoundation 0x000000014ee26102 -[NSTextLayoutManager processLayoutInvalidationForTextRange:synchronizing:] + 32 6 CoreFoundation 0x00000001207a01bd __NSARRAY_IS_CALLING_OUT_TO_A_BLOCK__ + 7 7 CoreFoundation 0x0000000120721d57 -[__NSArrayM enumerateObjectsWithOptions:usingBlock:] + 285 8 UIFoundation 0x000000014ee83e49 __54-[NSTextContentManager synchronizeTextLayoutManagers:]_block_invoke + 78 9 CoreFoundation 0x00000001207a01bd __NSARRAY_IS_CALLING_OUT_TO_A_BLOCK__ + 7 10 CoreFoundation 0x0000000120721d57 -[__NSArrayM enumerateObjectsWithOptions:usingBlock:] + 285 11 UIFoundation 0x000000014ee83dc6 -[NSTextContentManager synchronizeTextLayoutManagers:] + 85 12 UIFoundation 0x000000014ee85f51 -[NSTextContentStorage synchronizeTextLayoutManagers:] + 61 13 UIFoundation 0x000000014ee84780 -[NSTextContentStorage setAttributedString:] + 162 14 UIFoundation 0x000000014ee84488 -[NSTextContentStorage dealloc] + 29 15 libobjc.A.dylib 0x0000000117672228 _ZN11objc_object17sidetable_releaseEbb + 204 16 UIKitCore 0x000000013f3d5297 -[_UITextKit2LayoutController .cxx_destruct] + 94 17 libobjc.A.dylib 0x0000000117652766 _ZL27object_cxxDestructFromClassP11objc_objectP10objc_class + 83 18 libobjc.A.dylib 0x000000011766adfc objc_destructInstance + 61 19 libobjc.A.dylib 0x000000011767176c -[NSObject dealloc] + 19 20 UIKitCore 0x000000013f3ceb68 -[_UITextKit2LayoutController dealloc] + 119 21 libobjc.A.dylib 0x0000000117672228 _ZN11objc_object17sidetable_releaseEbb + 204 22 UIKitCore 0x000000013fee4aea -[UITextField .cxx_destruct] + 343 23 libobjc.A.dylib 0x0000000117652766 _ZL27object_cxxDestructFromClassP11objc_objectP10objc_class + 83 24 libobjc.A.dylib 0x000000011766adfc objc_destructInstance + 61 25 libobjc.A.dylib 0x000000011767176c -[NSObject dealloc] + 19 26 UIKitCore 0x000000013fade794 -[UIResponder dealloc] + 145 27 UIKit 0x0000000171b2e9ef -[UIResponderAccessibility dealloc] + 55 28 UIKitCore 0x00000001401311e4 -[UIView dealloc] + 1330 29 UIKitCore 0x000000013fec9441 -[UITextField dealloc] + 272 30 libobjc.A.dylib 0x0000000117672228 _ZN11objc_object17sidetable_releaseEbb + 204 31 CoreFoundation 0x000000012085cf54 __RELEASE_OBJECTS_IN_THE_SET__ + 144 32 CoreFoundation 0x000000012085ce7d -[__NSSetM dealloc] + 130 33 libobjc.A.dylib 0x0000000117672228 _ZN11objc_object17sidetable_releaseEbb + 204 34 UIKitCore 0x0000000140026766 -[_UILayoutArrangement .cxx_destruct] + 128 35 libobjc.A.dylib 0x0000000117652766 _ZL27object_cxxDestructFromClassP11objc_objectP10objc_class + 83 36 libobjc.A.dylib 0x000000011766adfc objc_destructInstance + 61 37 libobjc.A.dylib 0x000000011767176c -[NSObject dealloc] + 19 38 UIKitCore 0x000000014001d85e -[_UIAlignedLayoutArrangement dealloc] + 325 39 libobjc.A.dylib 0x0000000117672228 _ZN11objc_object17sidetable_releaseEbb + 204 40 CoreFoundation 0x0000000120725152 __RELEASE_OBJECTS_IN_THE_ARRAY__ + 124 41 CoreFoundation 0x000000012072508f -[__NSArrayM dealloc] + 130 ... ...
Posted Last updated
.
Post not yet marked as solved
5 Replies
6.0k Views
Hi, We ported our app to Apple Silicon and we often need to run our apps on simulator. But to be able to run on Simulator, I need to enable "Open using Rosetta". Also, under Build Settings → Architectures → Excluded Architectures, I have arm64. So, with out the need of enabling Open using Rosetta, how wold I be able to run the app on simulator and other platforms - iOS, iPadOS and macOS? Thank you!
Posted Last updated
.
Post not yet marked as solved
0 Replies
383 Views
We have classes BaseTextField and BaseButton. txt1 and btn1 are objects of the above classes respectively. This below code works in viewDidAppear, but not in viewDidLoad. txt1.layer.cornerRadius = 8.0 btn1.layer.cornerRadius = 8.0 btn1.titleLabel?.font = .boldSystemFont(ofSize: 17.0) In viewWillLayoutSubviews, only the button changes the layer but not the textfield. Can someone throw some light?
Posted Last updated
.
Post not yet marked as solved
3 Replies
1.8k Views
I SSL pinned our app in info.plist by following this Apple.com's link. I would like to show alert when certificate expired or handshaking expired. Can someone please tell me how can I use this method for that? func urlSession(_ session: URLSession, didReceive challenge: URLAuthenticationChallenge, completionHandler: @escaping (URLSession.AuthChallengeDisposition, URLCredential?) -> Swift.Void) { } <key>NSAppTransportSecurity</key> <dict> <key>NSAllowsArbitraryLoads</key> <true/> <key>NSPinnedDomains</key> <dict> <key>OurAppDomain.com</key> <dict> <key>NSIncludesSubdomains</key> <true/> <key>NSPinnedCAIdentities</key> <array> <dict> <key>SPKI-SHA256-BASE64</key> <string>XYZXYZXYZXYZkdlkjs78YDIU787d9=</string> </dict> </array> </dict> </dict> </dict>
Posted Last updated
.
Post not yet marked as solved
0 Replies
429 Views
I have an app with 5 tabs on UITabBarController. I want to show a menu (UIPopoverPresentationController) when I tap on last tab. And, when I tap on any Popover menu item, I want to navigate/push to the relevant UIViewController. Can someone please tell me how can I achieve this? Some one please direct me towards any delegate methods or something please?
Posted Last updated
.
Post not yet marked as solved
0 Replies
690 Views
My app is shown on share sheet when I try sharing PDFs or Images from apps like Box, Doximity and DropBox etc. But some apps like Google Drive does not show my app on Share Sheet. Even the "More" button or Edit actions would not show my app.  Screenshot is here: https://imgur.com/a/z94OG5l I have necessary items listed on plist file - NSExtensionActivationSupportsFileWithMaxCount and NSExtensionActivationSupportsImageWithMaxCount What would be the reason why some apps show and some don't? How do I fix it?
Posted Last updated
.