Question

dlsym returns null for enum values

NSLog(@"%s",dlsym(RTLD_DEFAULT, "NSTextAlignmentCenter"));

Output

2014-01-28 13:07:04.243 TestProject[763:60b] (null)
Was it helpful?

Solution

Enum values are an "integer constant expression". They don't have a reference.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top