Package pycocoa :: Module nstypes :: Class CFString
[frames] | no frames]

Class CFString

          object --+    
                   |    
runtime.ObjCInstance --+
                       |
                      CFString
Known Subclasses:

Create a CFString instance for a Python string.

Instance Methods
 
objc_classname(self)
Return the name of this object's Objective-C class.

Inherited from runtime.ObjCInstance: __getattr__, __repr__, set_ivar

Inherited from object: __delattr__, __format__, __getattribute__, __hash__, __init__, __reduce__, __reduce_ex__, __setattr__, __sizeof__, __str__, __subclasshook__

Static Methods
a new object with type S, a subtype of T
__new__(cls, ustr)
Create a new ObjCInstance or return a previously created one for the given object_ptr which should be an Objective-C id.
Class Variables

Inherited from runtime.ObjCInstance: objc_class, ptr

Properties

Inherited from object: __class__

Method Details

__new__(cls, ustr)
Static Method

 

Create a new ObjCInstance or return a previously created one for the given object_ptr which should be an Objective-C id.

Returns: a new object with type S, a subtype of T
Overrides: object.__new__
(inherited documentation)

objc_classname(self)

 

Return the name of this object's Objective-C class.

Overrides: runtime.ObjCInstance.objc_classname
(inherited documentation)