Questions tagged [ios13.2]

29 questions
1
vote
1 answer

Memory issue while downloading images Swift5 iOS13

Overall memory growth Whenever i get memory warning i'm clearing caches func applicationDidReceiveMemoryWarning(_ application: UIApplication) { print("Memory warning...") imageCache.countLimit = 0 imageCache.totalCostLimit…
Neelam Pursnani
  • 246
  • 3
  • 17
1
vote
1 answer

ios 13 UIContextMenu shows shortened UIAction titles

I decided to addUIContextMenuInteraction to my UITableViewCell, it works fine, but the title that has 9+ letters (without image) or 6+ letters(with image) is getting shortened like this: Implementation of delegate method: extension MyCustomCell:…
1
vote
1 answer

SwiftUI - String function size(withAttributes:) throwing NSInvalidArgumentException

The following code is throwing this exception: *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[__SwiftValue renderingMode]: unrecognized selector sent to instance 0x6000007122b0' let helloWorld = "Hello…
Jack
  • 2,503
  • 1
  • 21
  • 15
1
vote
1 answer

Pan Events issue with ionic WKWebView for iOS 13.2

In my ionic-cordova application, I have drag and drop functionality where I use pan events to drag and drop and use this: document.elementfrompoint(x,y) returns empty object on latest iOS 13.2. After analyzing the the latest upgrade was only the…
Neha Tawar
  • 687
  • 7
  • 23
1
vote
1 answer

Issues upgrading ios13.1 to 13.2 - NavigationLink - tried to pop to a view controller that doesn't exist

I built an app using both UIKit and swiftUI. It worked fine with ios13.1 but with ios 13.2 I have bugs: I'm showing a SwiftUI View in a UIViewController (using HostingController). This view is composed with elements wrapped in NavigationLink. When…
1
vote
0 answers

Local Storage deleted in ios13

We are using different concept like 1.localStorage.setItem("key","value"); 2. preference.put("key","value"); 3. memorypreference.put("key","value"); 4. globalpreference.put("key","value"); But the stored key itself is deleted once we kill or…
Praveen
  • 11
  • 4
0
votes
0 answers

Unit testing a viewController with constructor dependency

I want to write a simple unit test for the viewController described below that has constructor dependency. Unfortunately one of the parameters is of type NSCoder. How do I create the NSCoder argument while testing? As I get this error…
Hans Ben
  • 91
  • 10
0
votes
1 answer

Bars not showing on iOS 13 using Xcode 11.3

UITabBar not showing on iOS 13.2 @UIApplicationMain class AppDelegate: UIResponder, UIApplicationDelegate { var window: UIWindow? func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions:…
Suh Fangmbeng
  • 573
  • 4
  • 16
0
votes
4 answers

UIControlSegment background color is not transparent anymore on iOS13

I have a UISegmentedControl. it was working fine before iOS13 (I set both backgroundColor and tintColor to clear). But now, I don't get the same result. My SegmentedControl has a light grey layer. I made some research but nothing work. (I have…
Niib Fouda
  • 1,383
  • 1
  • 16
  • 21
0
votes
1 answer

RxSwift: Using BehaviorRelay I get this error: Instance method 'concatMap' requires that '[Int]' conform to 'ObservableConvertibleType'

I'm trying to use concatMap on BehaviorRelay but I'm getting this error: Instance method 'concatMap' requires that '[Int]' conform to 'ObservableConvertibleType' This is my implementation: class MyClass{ var disposeBag = DisposeBag() var…
user2924482
  • 8,380
  • 23
  • 89
  • 173
0
votes
2 answers

NSKeyedUnarchiver EXC_BAD_INSTRUCTION with protocol

I am updating my application to support IOS 11 versions Currently it works on IOS 13.2 But on IOS 11 and IOS 12.2 I have EXC_BAD_INSTRUCTION at NSKeyedUnarchiver decodeObject The class with the error class Seance : NSObject, NSCoding{ var date:…
Osarel
  • 25
  • 8
-1
votes
1 answer

Terminating app due to uncaught exception 'NSInternalInconsistencyException' in iOS 13.2

I was running an app on iPhone XR with iOS Version 13.2 using XCode 11.2 and the app crashes with reason. reason: 'The return values of -viewForFirstBaselineLayout and -viewForLastBaselineLayout must be in the receiver's subtree I tried…
Mayur Gajra
  • 8,285
  • 6
  • 25
  • 41
-1
votes
2 answers

RxSwift: implementing concatMap generating Reentrancy anomaly was detected error

I'm trying to implement concatMap within RxSwift but when I tried to set a new value to the observable within the concatMap I'm getting this error: Reentrancy anomaly was detected. > Debugging: To debug this issue you can set a breakpoint in…
user2924482
  • 8,380
  • 23
  • 89
  • 173
-3
votes
1 answer

What if application delete and then reinstalled how i can get the email address and name Sign in With Apple

Recently my app rejected from apple with the issue that must include the sign in with apple and than i tried that now i am encountered one of the use case and cant find the solution so far. What if user sign in with the apple in my app and get email…
AFTAB MUHAMMED KHAN
  • 2,189
  • 3
  • 18
  • 24
1
2