iOS开发学习笔记(持续更新)

  • 使用storyboard时如何进行页面跳转

[self performSegueWithIdentifier:@"yourIndentifier" sender:self]。在perpareForSegue方法里面,可以获得将要跳到的视图控制器[segue destinationViewController]来在不同的ViewController之间传递数据。

  • 用md5将字符串加密
先导入 #import <commoncrypto/CommonDigest.h>。
+( NSString *)md5:( NSString *)str { 
    const char *cStr = [str UTF8String];
    unsigned char result[32];
    CC_MD5( cStr, strlen(cStr), result ); 

    return [NSString stringWithFormat: 

        @"%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X",

            result[0], result[1], result[2], result[3], 

            result[4], result[5], result[6], result[7], 

            result[8], result[9], result[10], result[11], 

            result[12], result[13], result[14], result[15] 

            ]; 

}

  •  NSdictionary初始化

NSDictionary *LoginInfoDict =[[NSDictionary alloc]initWithObjectsAndKeys:account,@"userName",password,@"userPassword", nil];

 

 

你可能感兴趣的:(笔记,ios开发)