Hi I am loading nib file for uitableview cell in swift.
I am registering cell but for that want to use nil ReusableCellWithIdentifier.
Because I don't want to reuse cell.
In objective -C we can pass nil value in ReusableCellWithIdentifier to stop reusing cell but how to do in Swift .
If I am using init for custom cell then other outlets are coming nil and getting fatal Error.
PROBLEM IS IF I AM USING DEQUEREUSEABLE WITH IDENTIFIER LIKE "CUSTOMECELL" THEN IF I CHAGE ANY CELL PROPERTY THEN IT IS REFLECTING IN OTHER CELL ALSO DUE TO REUSE IDENTIFIER.