Wednesday, February 29, 2012

Felix Schulze: Tutorial: iPhone App with compiled OpenSSL 1.0.0a Library

Itt van.

Ron Gutierrez: Accepting Un-Trusted Certificates Using The IOS Simulator

Itt van.

SubView-k kilogolasa


-(void) printAllChildrenOfView:(UIView*) view depth:(int) d {
    //Tabs are just for formatting
    NSString *tabs = @"";
    for (int i = 0; i < d; i++)
    {
        tabs = [tabs stringByAppendingFormat:@"\t"];
    }
    
    NSLog(@"%@%@", tabs, view);
    
    d++; //Increment the depth
    for (UIView *child in view.subviews)
    {
        [self printAllChildrenOfView:child depth:d];
    }
}

Thursday, February 9, 2012

Wednesday, February 1, 2012

Keyboard eltuntetes UITextField-nel

2 dolgot kell megenni:
- UITextField delagate-jet ra kell allitani a File's Owner-re
-textFieldShoudReturn(UITextFiled *)textField-ben meg kell hivni a textField-en a resignFirstResponder-t valahogy igy:

-(BOOL)textFieldShouldReturn:(UITextField *)theTextField {
    [uploadsURLTextField resignFirstResponder];
    return YES;
}