This is the method that set my variable to value 0
Is it possible to patch it to assign it the default value 1 when is is called?
SetVariable Method
LDR R3, =(_OBJC_IVAR_$_MyAppAppDelegate.Variable - 0x5F002)
ADD R3, PC ; _OBJC_IVAR_$_MyAppAppDelegate.Variable
LDR R3, [R3]
STRB R2, [R0,R3]
BX LR
Variable Method
LDR R3, =(_OBJC_IVAR_$_MyAppAppDelegate.Variable - 0x5EFF2)
ADD R3, PC ; _OBJC_IVAR_$_MyAppAppDelegate.Variable
LDR R3, [R3]
LDRSB R0, [R0,R3]
BX LR
THe second one method that I posted is anoter method called with the same name of my variable! I can't understand where this variable is setted to 0!! Any help? How can I set it to 1? Thanks