prepareForSegue not called

Hello

iOS, C#, latest Elements beta.

Create 2 view controllers, make button on first and connect it to second view (action seque). In code write:

public void prepareForSegue(UIStoryboardSegue segue, id sender)
{
    NSLog("working");
}

This callback should be called before Seque action happen, to allow send data between views for example. It’s never called.

b.r.