Here is what I have.
@ViewChild('my_profile_tabs', {read: IonTabs}) tabRef: IonTabs;
buttonClick() {
console.log('tabRef ' + this.tabRef);
this.tabRef.select('tab4');
}
Output in the console is - the object is undefined:
tabRef undefined