I am having a problem with ios 13.6 and above.
I am using swift as a programming language. I have a dynamic tableview with constraints which contains another tableview inside it with its own constraints. Entire screen is dynamic in terms of height. My problem is with Inner tableview.
Inner tableview's each row contains 2 textfields and one remove button which removes that particular row. The last row of inner tableview includes add more button which adds another row with same (2 textfields and remove button) contents to inner tableview.
My code is working for iOS 13.5 and below. But since ios 13.6 the inner tableview showing only first 3 rows.
When i debug it i realised that cellForRowAtIndexpath calling only three times no matter what numberOfRows is returning.
I have stuck here since 2 days. This happens only in 13.6 and above.
I thought this might be the issue because of reusing cell. But this issue remains even when I skip reusing part.