xcracing

Results 3 comments of xcracing

To fix this, go to classes/CardIOVideoStream.h Find line: (around line 46) @property(nonatomic, weak, readwrite) id delegate; Replace with: @property(nonatomic, weak, readwrite) UIResponder *delegate; The project should then build properly

To fix this, go to classes/CardIOVideoStream.h Find line: (around line 46) @Property(nonatomic, weak, readwrite) id<CardIOVideoStreamDelegate> delegate; Replace with: @Property(nonatomic, weak, readwrite) UIResponder<CardIOVideoStreamDelegate> *delegate; The project should then build properly -...

FWIW, in the logs it's also complaining about not being able to find /usr/local/share/tessdata/co.traineddata file and mentiones making sure TESSDATA_PREFIX is set properly. This seems like a super cool and...