User talk:Kirb: Difference between revisions

Discussion page of User:Kirb
No edit summary
No edit summary
Line 1: Line 1:
''"filling gaps in hbang tweaks' ios compatibility"''
The NSAutoreleasePool class is a thin wrapper around the '''NSPushAutoreleasePool''' and '''NSPopAutoreleasePool''' functions.


Yayyyyyy thanks. [[User:Britta|Britta]] ([[User talk:Britta|talk]]) 04:39, 4 June 2014 (PDT)
<source lang="objc">
:Sure thing! [[User:Kirb|kirb]] ([[User talk:Kirb|talk]]) 04:42, 4 June 2014 (PDT)
#ifdef __cplusplus
extern "C" {
#endif
void *NSPushAutoreleasePool(NSUInteger capacity);
void NSPopAutoreleasePool(void* token);
#ifdef __cplusplus
}
#endif
</source>
 
Example:
 
<source lang="objc">
static void MyMethod()
{
    void *pool = NSPushAutoreleasePool(0);
    [[[NSObject alloc] init] autorelease];
    NSPopAutoreleasePool(pool);
}
</source>
 
The "capacity" argument of NSPushAutoreleasePool only serves as a hint. It is unused in the current implementation.
 
{{occlass|library=Foundation.framework}}

Revision as of 09:43, 2 February 2017

The NSAutoreleasePool class is a thin wrapper around the NSPushAutoreleasePool and NSPopAutoreleasePool functions.

#ifdef __cplusplus
extern "C" {
#endif
void *NSPushAutoreleasePool(NSUInteger capacity);
void NSPopAutoreleasePool(void* token);
#ifdef __cplusplus
}
#endif

Example:

static void MyMethod()
{
    void *pool = NSPushAutoreleasePool(0);
    [[[NSObject alloc] init] autorelease];
    NSPopAutoreleasePool(pool);
}

The "capacity" argument of NSPushAutoreleasePool only serves as a hint. It is unused in the current implementation.