Hey Greg,
If you want to incorporate a storyboard instead of generating views from code,
You can add "tags" on each subview via xcode (which would be an integer), then do this inside your view controller (I can't for the life of me find the blog where I got this from):
# for sake of example, say your button has a tag of 1
TAG_LOGIN_BUTTON = 1
button = retrieve_subview_with_tag(self, TAG_BUTTON)
button.when(UIControlEventTouchUpInside) do
#do things here
end
Although, where I work we would like to implement all our views programmatically.
We will bring you up to speed when you start next monday ;)
Anush