2011-03-10 79 views

回答

2

来上传你有一个像这样的工作:

NSString *encodedString=[self encode:(const uint8_t*)_secretData.bytes length:_secretData.length]; 

编码是方法在“Base64.h”类中定义,您可以从互联网上的任何地方下载它。

以及用于获取目的,你必须通过相同的字符串解码方法

NSData *data=[Base64 decode:your_string]; 

,并使用数据,你可以像

UIButton *image = [UIButton buttonWithType:UIButtonTypeCustom]; 
    [image setBackgroundImage:[UIImage imageWithData:data] forState:UIControlStateNormal]; 

希望它可以帮助进行任何操作!