2016年8月5日

iOS 返回到指定的ViewController

摘要: for (UIViewController *vc in self.navigationController.viewControllers) { if ([vc isKindOfClass:[MyViewController class]]) { [self.navigationController popToViewController:vc animated:Y... 阅读全文

posted @ 2016-08-05 11:05 夜夜清雨 阅读(218) 评论(0) 推荐(0)

iOS创建UUID

摘要: - (NSString *)getUUID { CFUUIDRef uuidObj = CFUUIDCreate(nil); //create a new UUID NSString * uuidString = (__bridge_transfer NSString *)CFUUIDCreateString(nil, uuidObj); CFRele... 阅读全文

posted @ 2016-08-05 10:55 夜夜清雨 阅读(295) 评论(0) 推荐(0)

iOS scrollView/tableView滚动到底部

摘要: //项目要求tableView滚动到底部就自动加载下一页,UITableView继承自UIScrollView 所以可以在//scrollViewDidEndDecelerating这个方法中进行判断操作 1 -(void)scrollViewDidEndDecelerating:(UIScrollView *)scrollView{ 2 if (scrollView == myScroll... 阅读全文

posted @ 2016-08-05 10:46 夜夜清雨 阅读(1158) 评论(0) 推荐(0)

导航