ObjCMessageExpr

public struct ObjCMessageExpr: ClangCursorBacked

An expression that sends a message to an Objective-C object or class.

  • Retrieve the argument cursor of a function or method. The argument cursor can be determined for calls as well as for declarations of functions or methods.

    Declaration

    Swift

    public func parameter(at index: Int) -> Cursor?
  • Retrieve the return type of the function.

    Declaration

    Swift

    public var resultType: CType?