MulleObjCAllocation

Core functions for object allocation and memory management.

Instance Functions

Class Functions

Thread Functions

Usage Example

// Allocate memory for instance
id obj = self;
void *memory = MulleObjCInstanceAllocateMemory(obj, 1024);

// Use memory
// ...

// Free when done
MulleObjCInstanceDeallocateMemory(obj, memory);

Important Notes

  1. Memory Management
  2. Thread Safety