GUI button for Android?

hi.
is there some way to make a GUI button work for Android/IOS?

In Unity.
Most all of the GUI is actually implemented in all of the systems that it supports.
So:

if(GUI.Button(Rect(0,0,100,20),"Example")){
   //Do Method
 } 

Works completely.