Why isn\'t this working:
self.backButton?.addTarget(self, action: Selector(\"backButtonPressed:\"), forControlEvents: .TouchUpInside) // unrecognize
on swift you dont need to write selector anymore just
self.backButton?.addTarget(self, action: "backButtonPressed:", forControlEvents: .TouchUpInside)