Help with ShareKit

Hi community,

Has anyone used ShareKit (http://getsharekit.com/) ?
I know this man could: http://cocos2d-x.org/boards/6/topics/9138
but he didn’t leave any information on how to implement.

It’s written in Obj-c, so I’ve created a wrapper class Share.h and Share.mm, but in it’s implementation using ShareKit obj-c code:

[actionSheet showInView:[CCDirector sharedDirector].openGLView]; // error: CCDirector is not an Objective-C class

Obviously error, because I’m using Cocos2D C++ classes, I tried this:
CCDirector::sharedDirector()>getOpenGLView;
// error: Cannot initialize a parameter of type ‘UIView ’ with an rvalue of type ’cocos2d::CCEGLView
How to proceed?
SOURCE CODE:
Share.h
http://pastebin.com/wgHzme3r
Share.mm - http://pastebin.com/YBaDFnJS

Thanks in advance,
Andrei