How to go to specific state in actionsheet

how to go on specific state in actionsheet.
i am using ng-click for that but it is not working

Look at http://ionicframework.com/docs/api/service/$ionicActionSheet/

You define your buttons and then there are two functionts

 cancel: function() {
    // add cancel code..
 },
 buttonClicked: function(index) {
   // $state.go(YOUSTATE);
   return true;
 } 

buttonClicked is called if any ordinary button is clicked -> you get the index (this is the button index 0, 1 ,…).
In that function you can redirect