<ion-select header="select Device Family" interface="popover" (ionChange)="change($event)" [selectedText]="selectedDeviceFamily.name">
<ion-select-option *ngFor="let table of tables" [value]="table">{{table.name}}</ion-select-option>
</ion-select>
Use [(model)]="xx"
and set xx
to a default value in your class.