vote up 0 vote down star
2

Is there any Aspect-Oriented Objective-C library that I could perhaps use for iPhone development?

flag

2 Answers

vote up 1 vote down check

There is an old project called AspectCocoa, this might be what you are searching for.

Otherwise Í would suggest rolling your own. Either proxy based AOP by subclassing NSProxy for a change. Or you could do some method swizzling with the quite cool Obj-C run-time function method_exchangeImplementations().

But unless you are looking for a fun exercise, ask yourself what you want to achieve, and if there is an existing perfectly working Objective-C way to do it.

link|flag
vote up -1 vote down

Not really, but a lot of people have done work along those lines:

http://tinyurl.com/y8h5mnk

link|flag
Took that path myself, and as I assume you've realized, there's not a lot of helpful information out there. That's why I went on and asked here, where by chance or something along the lines, I might just find someone who's working on, or knows more of such a library. – luvieere Oct 2 at 13:27

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.