`
auauau
  • 浏览: 172013 次
社区版块
存档分类
最新评论
文章列表

c# UDP学习笔记

    博客分类:
  • net
UDP 只有在需要的时候客户端和服务端才会进行连接。 UDP 对主机进行单项数据操作,只需要使用UDPClient进行通讯操作。 主要方法: REceive(ref IPEndPoint ep) ep:数据发送的主机,包括IP和端口。堵塞式接受数据。 Send(byte[] buf,int length,IP ...

SBJSON解析

    博客分类:
  • iOS
json: {"root":{"status":"0","days":"10"}} NSString *json = [request responseString]; NSMutableDictionary *dic = [json JSONValue]; NSMutableDictionary *root = [dic objectForKey:@"root"]; NSString *status = [root objectForKey:@"stat ...
需要引入 libz.dylib CfNetwork.framework MobileCoreServices.framework Security.framework SystemConfiguration.framework NSString *urlString = @"http://...."; NSURL *url = [NSURL URLWithString:urlString]; ASIHTTPRequest *request = [ASIHTTPRequest requestWithURL:url]; [request setDelega ...
IOS5 里面uniqueIdentifier这个接口没有了,但是我们又想要一个唯一的设备识别码怎么办? 下面这个方案是获取网卡mac地址然后做md5生成的,可以替代原来的uniqueIdentifier。 在你的工程中加入  NSString+MD5Addition.h .m   UIDevice+IdentifierAddition.h .m 调用方法: [[UIDevice currentDevice] uniqueDeviceIdentifier]           or    [[UIDevice currentDevice] uniqueGlobalDeviceIdentifie ...

判断设备是否越狱

    博客分类:
  • iOS
NSFileManager *fileManager = [NSFileManager defaultManager]; BOOL result = [fileManager fileExistsAtPath:@"/private/var/lib/apt/"];
https://github.com/vfr/Reader https://github.com/brow/leaves https://github.com/schwa/iOS-PDF-Reader https://github.com/andrewBatutin/IPad-IPhone-reader-for-pdf https://github.com/mobfarm/FastPdfKit

PHP学习笔记 02

    博客分类:
  • php
数组 1.创建数组: $users = array("a","b"); 改变数组的值 $users[0] = "c"; for($i=1;$i<10;$i++){    $users[$i]; } 统计数组个数 count() foreach($users as $key=>$value){    echo $value; } 创建自定义key的数组 $test = array{"key"=>"value"} 访问数据 $test["key"] ...

PHP学习笔记 01

    博客分类:
  • php
PHP集成安装环境 AppServ,内置了apache、mysql、php脚本解析工具。 开发工具: Zend Studio。下载地址:http://www.zendstudio.net/。 将workspace设定为php www目录,方便进行调试。 设定Zend模板。 设定代码提示。 <?php %> 写php代码。 // 单行注释 /* */ 多行注释 先浏览器输出 echo ""; 运行速度稍微快一些 echo 单引号,直接输入,不转换 print ""; 返回整型值 变量以 $ 开头,无需定义变量类型。 数据类型转换 ...
NSRunLoop *runloop = [NSRunLoop currentRunLoop]; NSTimer *timer = [NSTimer timerWithTimeInterval:0.1 target:self selector:@selector(myTimerAction:) userInfo:nil repeats:YES]; [runloop addTimer:timer forMode:NSRunLoopCommonModes]; [runloop addTimer:timer forMode:UITrackingRunLoopMode];
http://hi.baidu.com/xtianhe/blog/item/a2b09950a95ac6043b293576.html http://lijianyeath.blog.163.com/blog/static/126114904201151352543643/
相信很多人用iphone的Sqlite不会直接用C的方法,要么自己包装一层Object c的访问方法,要么用CoreData,下面我整理些目前所了结的一些Sqlite 包装类。 1.CoreData ,不用多说了,官方文档很多。 2.FMDB  ,让你更熟悉使用Object c 的方法使用sql进行sqlite的操作,文件也比较小,很轻量,发现问题了,自己估计也能解决。   https://github.com/ccgus/fmdb   3. sqlitepersistentobjects ,更多的面向对象操作数据库,也非常优秀。 http://code.google.com/p/sqli ...
http://code.google.com/p/toast-notifications-ios/ https://github.com/scalessec/Toast https://github.com/esilverberg/ios-toast https://github.com/brianmichel/UIToastAlert

初探coreText

    博客分类:
  • iOS
请参考 http://blog.sina.com.cn/s/blog_5102c0360100uv9l.html http://www.dev3g.com/?p=30

google免费的TTS服务

    博客分类:
  • iOS
今天用google在线翻译的时候,发现了语音功能。 可以让自己的文字发音,这是一个很不错的功能,如果用到自己应用中,会不会是一个特色呢。 google TTS服务接口:http://translate.google.com/translate_tts?tl=en&q=text 这个会返回英文“text”发音的mp3.如果想返回中文的发音如何办呢?大家注意接口中的参数,修改一下就行:http://translate.google.com/translate_tts?tl=zh&q=测试。 由此类推,如果是其它国家的发音如何办, 只需要修改tl=countryCode这个参数。
如果你的应用与安全相关,那么你可能要CCCrypt来对你的数据进行加密。直接用API是不是很不爽呀, 有很多参数传来传去,今天要给大家推荐的一个开源工程就是与加密相关的。它对CCCrypt进行了封装,很方便而简单的进行加密操作。 源码下载:https://github.com/dev5tec/FBEncryptor 它是能进行基于256位的AES的Base64 Encoding/Decoding. 工程项目里有一demo,见面也有介绍用法,很不错的一个封装。
Global site tag (gtag.js) - Google Analytics