AOP

2011-05-24 Thread Guillermo Moral
Which *Aspect-Oriented Programming *framework* is *recommended to work with Cocoa? I tried MGAOP but I am not sure it is the right one. Guillermo Moral ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or

How to see a video from YouTube on Iphone

2011-05-27 Thread Guillermo Moral
Which is the best way to show a video from YouTube on iphone like you see when you implement MoviePlayerCotroller? Does anyone have an example? Thanking you in advance An Example using MoviePlayerController - (IBAction)playVideo:(id)sender { [playButton setImage:playButtonImage forState:

How to call delegate methods using YouTube embed technique?

2011-05-30 Thread Guillermo Moral
What is the best way to call delegate methods using YouTube embed technique ? You can see two example on how to work with Youtube embed technique in these links : http://iphonedevelopertips.com/video/display-youtube-videos-without-exiting-your-application.html http://iphoneincubator.com/blog/win

How can I work with code completion in Xcode 4?

2011-05-31 Thread Guillermo Moral
lease HEADER_SEARCH_PATHS /Users/xxx/xxx/headers LIBRARY_SEARCH_PATHS /Users/xxx/xxx/lib/4.2/Debug-iphonesimulator VALIDATE_PRODUCT YES OTHER_LDFLAGS -all_load -lxml2 -lMyLib Thanking you in advance. -- Guillermo

How to log arguments in runtime?

2011-06-22 Thread Guillermo Moral
argument type '%s'.", argType]; } #define IS_EQUAL 0 if (strcmp(argType, @encode(id)) == IS_EQUAL) { id value = va_arg(stackFrame, id); if (!value) { } } } NSLog(@"%@",logString);