
|
|
![]() UIToolBar adds no new commands or monkeyID customization. Although you add UIBarButtonItems for each button to display on a toolbar, each UIBarButtonItem is actually implemented by by an undocumented Cocoa Touch class called UIToolBarTextButton. For this reason, when you record touching a UIBarButtonItem, the command will be recorded with a class of UIToolBarTextButton rather than UIBarButtonItem.For example, to touch the "Settings" button on a toolbar: Touch UIToolBarTextButton "Settings"
|