Clear native ios textfields

What would be some ruby syntax for clearing a native iOS text field that is retrieved by find_element?

eg, find the element so:

@burger = @driver.find_element(:name, “hamburger”)

and burger is a UITextField … how to clear it?

@codemutt this should do the trick:

burger.clear

It does, and thanks.