Objective-C Block type as return value -


how write following:

typedef void (^t)(void); t f() {     return ^{}; } 

without typedef?

void (^f())(void) {    return ^{}; } 

you'd better keep typedef return type not easy understand in form.


Comments

Popular posts from this blog

How to provide Authorization & Authentication using Asp.net, C#? -

toolbar - How to add link to user registration inside toobar in admin joomla 3 custom component -

How to use Authorization & Authentication in Asp.net, C#? -