2014年8月2日
摘要: NSSavePanel *fileDialog = [NSSavePanel savePanel];[fileDialog setAllowedFileTypes:[NSArray arrayWithObject:@"rar"]];//允许保存的文件后缀名[fileDialog setDirecto... 阅读全文
posted @ 2014-08-02 13:58 orientwolf 阅读(434) 评论(0) 推荐(0) 编辑
  2014年7月25日
摘要: 阅读全文
posted @ 2014-07-25 21:42 orientwolf 阅读(361) 评论(0) 推荐(0) 编辑
  2014年7月20日
摘要: 由于python目前不能直接处理中文路径,必须要转化一下,如下例子是下载图片(名字为中文的): def getInfo(self,imageurl): response = urllib.request.urlopen(imageurl).read().decode('utf-8')# with o... 阅读全文
posted @ 2014-07-20 23:03 orientwolf 阅读(1582) 评论(0) 推荐(0) 编辑
摘要: #!/usr/bin/env python# -*- coding: utf-8 -*-import sys,reimport urllib.request,urllib.parse,http.cookiejarclass myW3(): def login(self): 'post 数据' dat... 阅读全文
posted @ 2014-07-20 22:59 orientwolf 阅读(305) 评论(0) 推荐(0) 编辑
  2014年5月2日
摘要: 错误信息:NSAutoreleasePool' is unavailable: not available in automatic reference counting mode错误原因:阅读的书籍用的是老版本的Xcode,而自己使用的是Xcode5,新版本中苹果引入了自动记算引用数的功能,所以老... 阅读全文
posted @ 2014-05-02 08:52 orientwolf 阅读(211) 评论(0) 推荐(0) 编辑