Thought I would make my Trivia Crack tweak into a patcher. Everything was going well, compiled with no errors and all that, but the first two switches in the patcher have no effect, whereas the third one works perfectly fine. That said, how do I add these methods into my patcher?
Class: PRQuestionViewController
Method: -(void)setupQuestionTimer
In my original tweak, it was as simple as
%hook PRQuestionViewController
-(void)setupQuestionTimer {
}
%end
Class: PRAnswersGroupView
Method: -(void)setWrongAnswerSelector:(SEL)
*SEL just means Selector for those that don't know.*
In my original tweak
%hook PRAnswersGroupView
-(void)setWrongAnswerSelector:(SEL)fp8 {
%orig(NULL);
}
%end