Where you want to access ??
If its in controller of same view then you need not declare self=this.
Simply in the onInit() method do as -
this._control1 = this.getView().byId("controlId");
Then this._control1 will have reference to the control and you use it as you like.
BR.