The below code is written in swift class
override func prepareForSegue(segue: UIStoryboardSegue, sender: AnyObject?) {
dim(.In, alpha: dimLevel, speed: dimSpeed)
}
@IBAction func unwindFromEditAboutUs(segue: UIStoryboardSegue)
{
dim(.Out, speed:dimSpeed)
}
I want to call this class functions from my objective C class.... plz. suggest me how can I do this...