What class's "isHidden" are you trying to use? UIView? Can you show us a line of code that produces an error message, and what is the exact error message?
Because of the API's origins in the Obj-C world, pre Swift, in some classes there is an ambiguity between the property name "hidden" and the accessor (method, function) name "isHidden". Different versions of Swift have handled this differently. In Xcode 6.2's version of Swift, you will likely have to get the value like this:
let wasHidden = myView.isHidden
but set the value like this:
myView.hidden = shouldBeHidden