ionic 2 scroll to bottom

In HTML:
<ion-content padding #pageContent>
------- --
-------
</ion-content>


In Component:

@ViewChild('pageContent') pageContent: Content;


then in a method:

setTimeout(() => {
         this.pageContent.scrollToBottom();
}, 300);