Hi all, I have got a strange crash, it happens on old iPad 32 bits (A1458)
What would you recommend ?
Thanks.
Hi all, I have got a strange crash, it happens on old iPad 32 bits (A1458)
What would you recommend ?
Thanks.
Dear Kirill Prazdnikov,
can you reproduce this issue? If yes, could you please rerun the app with zombies enabled? (Edit scheme… > Diagnostics > Zombie Objects)
Best Regards,
Kristóf
Reproducible 100%, running with “zombies enabled” …
I see the same:
Dear Kirill Prazdnikov,
Could you please run these commands below in the LLBM console?
po *(id*)$r0
po (id)$r0
Btw., do you have a Java class that extends (directly or not) UITextField?
Best Regards,
Daniel
(lldb) po (id)$r0
0xe89fed20
(lldb) po (id)$r0
0x025fbb24
yes:
class CustomTextField extends UITextField {
private UIEdgeInsets myPaddingInsets;
protected CustomTextField(Pointer peer) {
super(peer);
}
@Selector(“alloc”)
public static native CustomTextField alloc();
@Selector(“init”)
public native CustomTextField init();
…
Dear Kirill Prazdnikov,
could you please share this class with us?
Best Regards,
Kristóf
Here it is
Thanks for help, I`m leaving for today. Will do more later.
Hi,
I`m trying to find the exact crash location in java. How can I set a breakpoint in java ?
Magic, here is a working file