这几天遇到一个需求:做第三方登录和分享。遇到了一些坑,把整个过程整理记录下来,方便他人,同时也捋一下思路。 当时考虑过把每个平台的SDK下载下来,一个一个弄,一番取舍后决定还是用ShareSDK。这里只做了微博、微信和QQ。过程如下: 1.去ShareSDK官网注册一个账号方便以后对ShareSDK ...
分类:
微信 时间:
2017-03-19 23:50:34
阅读次数:
395
NSBundle的相关信息 1.一个NSBundle代表一个文件夹,利用NSBundle能访问对应的文件夹 2.利用mainBundle就可以访问软件资源包中的任何资源 3.模拟器应用程序的安装路径: /Users/aplle/资源库/Application Support/iPhone Simul ...
分类:
移动开发 时间:
2017-02-28 00:15:08
阅读次数:
250
// // XMGStatusesViewController.m // 备课03-不等高的cell-非代码 #import "XMGStatusesViewController.h" #import "XMGStatus.h" #import "XMGStatusCell.h" @interfac... ...
分类:
其他好文 时间:
2017-02-26 21:08:48
阅读次数:
217
interface ViewController () /**获取.plist数据*/ @property (nonatomic,strong) NSArray *aps; @end @implementation ViewController - (void)viewDidLoad { [supe... ...
分类:
移动开发 时间:
2017-02-18 23:58:19
阅读次数:
1197
// 全局队列 异步下载图片 - (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event { dispatch_async(dispatch_get_global_queue(0, 0), ^{ NSLog(@"%@", [NST ...
分类:
其他好文 时间:
2017-01-06 21:50:55
阅读次数:
373
//1.storyboard //(1) //此处bundle:nil 等价于 [NSBundle mainBundle] // SecondViewController *secondVc = [[UIStoryboard storyboardWithName:@"Main" bundle:nil ...
分类:
其他好文 时间:
2016-12-29 19:50:27
阅读次数:
188
1 #pragma mark UI 相关 2 + (instancetype)voteGuestView{ 3 XiaoCongXiuVoteGuestView *guestView = [[[NSBundle mainBundle] loadNibNamed:@"XiaoCongXiuVoteGu ...
分类:
其他好文 时间:
2016-12-28 17:28:59
阅读次数:
202
// // MJViewController.m // 05-汤姆猫 // // Created by apple on 14-3-24. // Copyright (c) 2014年 itcast. All rights reserved. // #import "MJViewController ...
分类:
其他好文 时间:
2016-12-21 09:54:28
阅读次数:
171
所谓动态Html,指代码中组合生成的html字符串; 若需要加载本地CSS,图片,JS文件,则, 1,需要文件的全路径; 2,需要“file:///”标志; 例如: //获取文件全路径 NSString *imagePath = [[NSBundle mainBundle] pathForResou ...
分类:
移动开发 时间:
2016-12-20 13:47:46
阅读次数:
256
DJEmotionPageView.m DJEmotionPopView.m 最终效果: ...
分类:
其他好文 时间:
2016-11-30 23:05:24
阅读次数:
238