macro_rules! class { ($name:ident) => { ... }; }
Gets a reference to a Class.
Class
Panics if no class with the given name can be found. To check for a class that may not exist, use Class::get.
Class::get
let cls = class!(NSObject);