Hello, I trying to add custom attribute OnClickListener, the problem is that typeof always return BaseView type instead of MyView.
struct OnClickListener {
    string id;
}

class BaseView {
    void onCreate() {
writeln(getSymbolsByUDA!(typeof(this), OnClickListener).stringof);
    }
}

class MyView : BaseView {
    @OnClickListener("okButton")
    void onOkButtonClick() {
        writeln("Hello world!");
    }
}

Reply via email to