objective-c
zzcchunter
这个作者很懒,什么都没留下…
展开
-
objective-c MD5 Implementation
/** * A Objective-C implementation of the RSA Data Security, Inc. MD5 Message * Digest Algorithm, as defined in RFC 1321. * Based on the JavaScript implementation of Paul Johnston * Copyright原创 2013-11-01 10:53:11 · 786 阅读 · 0 评论 -
ios平移动画
-(void)removeViewWithAnim:(UIView*)lastView{ [UIView animateWithDuration:kAnimDur animations:^{ lastView.frame=CGRectMake(self.view.frame.size.width, lastView.frame.origin.y, kItemWith, k原创 2013-11-15 16:47:09 · 4978 阅读 · 0 评论 -
八进制转义字符
项目中遇到了一个比较棘手的问题,是做一个网络自动登录功能的app。这个登录本来是用网页授权,然后js将密码是用md5加密,服务器又会生成一组随机数比如/032/222/332,这样需要向服务器post的数据格式就变成了 username=aaa&password=md5(/032yourpassword/222/332),格式,于是屁颠屁颠的用正则匹配(@2152393771)获得字符串,打印出来原创 2013-11-05 11:03:12 · 10849 阅读 · 0 评论