
SDK
wssxy
这个作者很懒,什么都没留下…
展开
-
游戏SDK的配置文件说明
渠道SDK的配置 都在打包工具/games/当前游戏/config.xml中 SDKserver登录认证地址,在打包工具/config/local/local.properties中原创 2016-05-19 15:06:32 · 690 阅读 · 0 评论 -
IOS JSON解析
Json数据封包 [cpp] view plain copy print? NSDictionary *dic = [NSDictionary dictionaryWithObjectsAndKeys:@"value1",@"key1",@"value2",@"key2",@"value3",@"key3", nil]; // isVal转载 2016-06-12 14:40:51 · 509 阅读 · 0 评论 -
NSURLSession(一)GET请求
//GET请求, 也可以给服务器发送信息, 也有参数(微博用户名,用户id) //1.构造URL, 参数直接拼接在url连接后 NSURL *url = [NSURL URLWithString:@"http://news-at.zhihu.com/api/3/news/4602734"]; //2.构造Request //把get请求的请求头保存在request里 //NSURLR转载 2016-06-12 19:12:07 · 484 阅读 · 0 评论 -
NSURLSession(二)POST请求
//1.构造URL NSURL *url = [NSURL URLWithString:@"https://api.weibo.com/2/statuses/update.json"]; //2.构造Request NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:url]; //(1)设置为POS转载 2016-06-12 19:13:06 · 668 阅读 · 0 评论 -
【IOS开发】UIImageView的用法。。图片
//下载图片 -(UIImage *) getImageFromURL:(NSString *)fileURL { NSLog(@"执行图片下载函数"); UIImage * result; NSData * data = [NSData dataWithContentsOfURL:[NSURL URLWithString:fileURL]]; r转载 2016-06-22 18:26:12 · 382 阅读 · 0 评论 -
IOS-UIImageView
// (1)创建 UIImageView *imageView = [[UIImageView alloc ] init]; UIImage *image = [UIImage imageNamed:@"image_photo"]; imageView.image = image; //转载 2016-06-22 19:32:34 · 237 阅读 · 0 评论