Merge fixes from my temporary fork.
commit
27d4bd055a
@ -0,0 +1,5 @@
|
|||||||
|
*~
|
||||||
|
.*.sw?
|
||||||
|
Build
|
||||||
|
Debug
|
||||||
|
Release
|
||||||
@ -0,0 +1,37 @@
|
|||||||
|
#include "Test.h"
|
||||||
|
|
||||||
|
@interface MLTestClass : Test {
|
||||||
|
@public
|
||||||
|
}
|
||||||
|
- (void)someF;
|
||||||
|
@end
|
||||||
|
|
||||||
|
@implementation MLTestClass
|
||||||
|
- (void)someF
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
@end
|
||||||
|
|
||||||
|
static void ff(id obj, SEL _cmd)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
int main()
|
||||||
|
{
|
||||||
|
static char static_char;
|
||||||
|
MLTestClass * tc;
|
||||||
|
tc = [MLTestClass new];
|
||||||
|
objc_setAssociatedObject(tc, &static_char, (id)1223, OBJC_ASSOCIATION_ASSIGN);
|
||||||
|
[tc release];
|
||||||
|
int i = 0;
|
||||||
|
tc = [MLTestClass new];
|
||||||
|
objc_setAssociatedObject(tc, &static_char, (id)1223, OBJC_ASSOCIATION_ASSIGN);
|
||||||
|
SEL some_sel = sel_registerName(".some_sel");
|
||||||
|
const char *types = "v@:";
|
||||||
|
class_addMethod(object_getClass(tc), some_sel,
|
||||||
|
(IMP)ff, types);
|
||||||
|
int j = (int)objc_getAssociatedObject(tc, &static_char);
|
||||||
|
[tc release];
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue