|
bool2NS(py)
Create an NSBoolean instance from a Python
bool . |
|
|
|
bytes2NS(py)
Create an NSData instance from Python
bytes . |
|
|
|
decimal2NS(py)
Create an NSDecimal instance from a Python
Decimal . |
|
|
|
dict2NS(py,
frozen=False)
Create an NS[Mutable]Dictionary instance from a Python
dict . |
|
|
|
float2NS(py)
Create an NSDouble instance from a Python
float or int . |
|
|
|
frozenset2NS(py)
Create an (immutable) NSSet instance from a Python
frozenset . |
|
|
|
generator2NS(py)
Create an NSArray instance from a Python
generator . |
|
|
|
int2NS(py,
NS=None)
Create an NSNumber instance from a Python
int or long . |
|
|
|
list2NS(py)
Create an NSMutableArray instance from a Python
list . |
|
|
|
map2NS(py)
Create an NSArray instance from a Python
map . |
|
|
|
None2NS(py)
Return the NSNull singleton for Python's
None . |
|
|
|
range2NS(py)
Create an NSArray instance from a Python
range . |
|
|
|
set2NS(py)
Create an NSMutableSet instance from a Python
set . |
|
|
|
str2NS(py)
Create an NSStr instance from a Python str . |
|
|
|
time2NS(py=None,
since=1970)
Create an NSDate instance from a timestamp. |
|
|
|
tuple2NS(py)
Create an immutable NSArray instance from a Python
tuple . |
|
|
|
unicode2NS(py)
Create an NSStr instance from a Python
unicode string. |
|
|
|
url2NS(py,
url2=None)
Create an NSURL instance from a Python string. |
|
|
|
py2NS(py)
Convert (an instance of) a Python object into an instance of the
equivalent NS... ObjC class: |
|
|
|
type2NS(py)
Create the NS... ObjC object for a Python Type or
wrapper instance. |
|
|