Thursday, December 6, 2012

Terror Cells

my new iOs app was released a few days ago, called Terror Cells.
It covers all info and news and more about terror organizations and threats as well you have an ability to participate in capturing terrorists ( anonymously of course ).












Thursday, November 8, 2012

HTML inside UITextView


#define TEXTVIEW_SET_HTML_TEXT(__textView__, __text__)\
do\
{\
    if ([__textView__ respondsToSelector: NSSelectorFromString(@"setContentToHTMLString:")])\
        [__textView__ performSelector: NSSelectorFromString(@"setContentToHTMLString:") withObject: __text__];\
    else\
        __textView__.text = __text__;\
}\
while (0)

#define TEXTVIEW_GET_HTML_TEXT(__textView__, __text__)\
do\
{\
    if ([__textView__ respondsToSelector: NSSelectorFromString(@"contentAsHTMLString")])\
        __text__ = [__textView__ performSelector: NSSelectorFromString(@"contentAsHTMLString") withObject: nil];\
    else\
        __text__ = __textView__.text;\
}\
while (0)


Usage : 

UITextView * over = [[UITextView alloc] initWithFrame:CGRectMake(5, 205, 310, 150)];
[over setBackgroundColor:[UIColor clearColor]];
[over setFont:[UIFont fontWithName:@"Optima-Bold" size:12.0]];
TEXTVIEW_SET_HTML_TEXT(over,@"your html text");
[over setTextColor:[UIColor whiteColor]];
[self.view addSubview:over];

Tuesday, October 23, 2012


Helpy App is out - Still in Beta.....


Don't forget to do something somewhere, this helpful app will remind you as you go that you need something to do ( buy, pickup etc.. ) and suggest where on your way can you do it right now.
You can also send task to someone else ( delegate is the best.... )
Includes Google Street view and other helpful features.









Friday, October 12, 2012

GalTextField with hide keyboard and drop line

iOs TextField component that will also drop line and hide the keyboard without the Done button.

After seeing for several years that Apple does nothing to address this issue I've decided to create this component for everyone to use it.

https://code.google.com/p/galtextfield/



Wednesday, February 8, 2012

iLibRu for Android is there You can download it for all your android devices ( even the oldest ones ) and read away.
Download it from the Android market
iLibRu for Android