Archive for May, 2012

Remove Numbers From String ios


   NSString *trimmedString = nil;

    NSCharacterSet *numbersSet = [NSCharacterSet characterSetWithCharactersInString:@"0123456789"];
    trimmedString = [string stringByTrimmingCharactersInSet:numbersSet];
    return trimmedString;

Leave a comment

Trimming Whitespaces from a string in ios


NSString *strUserName = [self.txtUsrNm.text stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceAndNewlineCharacterSet]];

Leave a comment

Xcode Shortcuts


Leave a comment

Swipe Gesture in iphone


UISwipeGestureRecognizer *swipeup=[[UISwipeGestureRecognizer  alloc]initwithTarget:self action:@selector(screenswiped)];
swipeup.numberOfTouchesRequired=1;
swipeup.direction=UISwipeGestureRecognizerDirectionUp;
[self.view addGestureRecognizer:swipeup];

Leave a comment