Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Redundance Conformance of User to Protocol PFSubclassing (Swift 2.0)

enter image description here

I just migrated my Swift 1.2 code to Swift 2.0.

This code previously works fine. but now there is an error saying

Redundance Conformance of User to Protocol PFSubclassing (Swift 2.0)

What might be causing this?

like image 407
JayVDiyk Avatar asked Sep 08 '15 11:09

JayVDiyk


1 Answers

PFUser Conforms PFSubclassing Protocol. So no need to Conform PFSubclassing in you subclass. Remove PFSubclassing will work.

**class LCUser : PFUSer {

// data members }**

like image 51
sohail059 Avatar answered Nov 02 '22 09:11

sohail059