Posts

Post not yet marked as solved
1 Replies
515 Views
javaScriptCanOpenWindowsAutomatically feature is available with WKPreferences As WKPreferences.javaScriptEnabled got deprecated, it is recommended to migrate with WKWebpagePreferences . But as the dependent javaScriptCanOpenWindowsAutomatically is not available in WKWebpagePreferences blocking our functionality.
Posted
by sasibala.
Last updated
.
Post not yet marked as solved
1 Replies
1.4k Views
Installation failed with log Error Domain=NSURLErrorDomain Code=-1022 The resource could not be loaded because the App Transport Security policy requires the use of a secure connection using OTA generated link . Same link working iOS13. Same application able to install via apple store / ipa in iOS 14 How to resolve this?
Posted
by sasibala.
Last updated
.
Post not yet marked as solved
0 Replies
425 Views
Navigation Bar Color and popup style sheet's header color are completely black/transparent and white in iOS /iPadOS 15 beta running using Xcode 13 Beta for inside our applications Checked Xcode 13 - iOS 14.x- Working as expected Xcode 13 - iOS 15 Beta - issues with Navigation bar popup(action) sheets Refer image given
Posted
by sasibala.
Last updated
.
Post not yet marked as solved
0 Replies
630 Views
self.viewController = [[UIActivityViewController alloc] initWithActivityItems:nsurllink applicationActivities:nil]; UIPopoverPresentationController *shareController = [self.viewController popoverPresentationController];self.viewController.completionWithItemsHandler= ^(NSString *activityType, BOOL completed, NSArray *returnedItems, NSError *activityError) { if(activityType == nil || completed) { self.vewController = nil; } };[self presentViewController:self.viewController animated:YES completion:nil];I used above code to share. but while sharing email header page is fully black for xcode 10 apps. for xcode 11 for light mode , it is light color. But still the top level status/navigation bar background color is not respecting the color what i am passing as in ios12.
Posted
by sasibala.
Last updated
.
Post not yet marked as solved
1 Replies
560 Views
After copy, when we do Pointer difference check ,for NSDate variable failed.@interface TestDef : NSObject<NSCopying>... TestDef *original = [[TestDef alloc] init]; TestDef *copied = [original copy]; XCTAssertNotEqual(original.Date, copied.Date);
Posted
by sasibala.
Last updated
.
Post marked as solved
5 Replies
6.6k Views
We have format definitions as belowdateFormat = "E MMM d yyyy HH:mm:ss Zzzz"locale = Locale(identifier: "en_US_POSIX")let unFormattedDateString = "Mon Dec 31 2012 13:30:00 GMT+0530"let unformattedDate = DateFormatter.date(from: unFormattedDateString as String) --> failedThis is specific only above dateformat. For others it is fine. Also same code if run with ios12 devices no issues.
Posted
by sasibala.
Last updated
.