For Swift, use this,
self.navigationItem.rightBarButtonItem = UIBarButtonItem(title: "Title", style: UIBarButtonItemStyle.Plain, target: self, action: Selector("methodName"))
Set the title color using this,
self.navigationItem.rightBarButtonItem?.tintColor = UIColor.whiteColor()
source share