Is there any Aspect-Oriented Objective-C library that I could perhaps use for iPhone development?
feedback
|
|
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 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. | |||||
feedback
|
|
Check out my article about a possible solution: http://codeshaker.blogspot.com/2012/01/aop-delivered.html The base idea is to make a hook into the message sending mechanism and force it to the message forwarding route:
You can find the concrete example on the above link. Please feel free to use it. | |||||||
feedback
|
|
Also you might want to check out the library at https://github.com/moszi/AOP-in-Objective-C which is a very simple NSProxy subclass allowing you to intercept the beginning and the end of the method calls. With this you can even create a proxy class for you objects to make sure messages sent to your object are serialized over one single thread, regardless of the invoking thread. | ||||
|
feedback
|
|
I'm working on a real (it is more than method-swizzling) AOP-Framework for Objective-C. An alpha will be released soon. You can listen to my german presentation on the Macoun'09 conference here: http://macoun.de/?page_id=2223 If you're still interested in AOP for Objective-C you can send me a mail to negm-awad@cocoading.de or simply visit this site: aspective-c.com in a few weeks. There will be an english version (yup, not translated by me ;-)) of the site and the manual in a few weeks. | ||||
|
feedback
|
|
All still interested people should take a look at https://github.com/mgebele/MGAOP This seems to be a new project with future potential. | |||
|
feedback
|
|
Another one is Aspect Objective-C: https://github.com/tomdalling/AspectObjectiveC | |||
|
feedback
|
|
With Objective-C i would suggest to go with the here much used Category- and Delegate-Pattern. These can be more useful than AOP. Don't try and solve your problems with solutions you learned for other languages. | |||
|
feedback
|