Module fruity__bbqsrc::objc[][src]

Expand description

Objective-C library.

Feature Flag

This module corresponds to the objc feature flag.

Modules

sys

Raw unsafe C functions exposed by libobjc.

Structs

BOOL

The boolean value type.

Class

An Objective-C class.

ImageInfo

Information for Objective-C binaries.

ImageInfoFlags

Runtime features indicated in ImageInfo.

Method

A method in a Class definition.

MethodDescription

A Method definition.

NSObject

An instance of the root class for most Objective-C objects.

ObjCObject

A type-erased instance of any Objective-C class.

Property

An Objective-C property declaration.

PropertyAttribute

A Property attribute.

Sel

A method selector.

Constants

NO

The BOOL equivalent to false.

NSIntegerMax

The maximum NSInteger value.

NSIntegerMin

The minimum NSInteger value.

NSUIntegerMax

The maximum NSUInteger value.

NSUIntegerMin

The minimum NSUInteger value.

YES

The BOOL equivalent to true.

Traits

ClassType

A type that represents an instance of a specific Objective-C class.

ObjectType

An Objective-C object instance.

Functions

autoreleasepool

Calls a function in the context of a new autorelease pool, like @autoreleasepool.

Type Definitions

Imp

A pointer to the function of a method implementation.

NSInteger

Describes an integer.

NSUInteger

Describes an unsigned integer.

id

An automatically-reference-counted pointer to a type-erased Objective-C object.