Exemplo n.º 1
0
func (sel Selector) Name() string {
	return C.GoString(C.sel_getName(sel.csel()))
}
Exemplo n.º 2
0
func (mthd Method) Name() string {
	return C.GoString(C.sel_getName(C.method_getName(mthd.cmethod())))
}
Exemplo n.º 3
0
func Runtime_sel_getName(sel unsafe.Pointer) string {
	return C.GoString(C.sel_getName((*C.struct_objc_selector)(sel)))
}