打印结果:2
转自: Remove trailing zeros of a double only when necessary
打印结果:convertedString: 我爱你,我♥︎你
转自:Using Objective C/Cocoa to unescape unicode characters, ie \u1234
转自:https://github.com/neevek/UIView-Visibility
当tableview style设置为ground时,每个section的header会跟随tableview一起上下滑动;当style设置为plain时,每个section的header会悬浮在屏幕最上面,直到下一个section的header划过来,把当前的替换掉。现在的问题是,可以在style为plain时,让header也跟随tableview一起上下滚动吗,而不停在屏幕最上的部分。
//去掉UItableview headerview黏性 - (void)scrollViewDidScroll:(UIScrollView *)scrollView { if (scrollView == self.myTableView) { CGFloat sectionHeaderHeight = YOUR_HEIGHT; if (scrollView.contentOffset.y<=sectionHeaderHeight&&scrollView.contentOffset.y>=0) { scrollView.contentInset = UIEdgeInsetsMake(-scrollView.contentOffset.y, 0, 0, 0); } else if (scrollView.contentOffset.y>=sectionHeaderHeight) { scrollView.contentInset = UIEdgeInsetsMake(-sectionHeaderHeight, 0, 0, 0); } } }转自:http://blog.sina.com.cn/s/blog_aedec7030101l1q6.html
转载于:https://www.cnblogs.com/a0000/p/5134841.html