iOS
longlz
这个作者很懒,什么都没留下…
展开
-
单例的几种方法
+ (MySingleton *)shareMySingleton { @synchronized(self){ if (g_MySingleton == nil) { g_MySingleton = [[self alloc]init]; } } return g_MySingleto原创 2014-07-10 15:06:26 · 496 阅读 · 0 评论 -
NSUserDefault用法(能保存的数据)
NSUserDefault *defaults原创 2014-07-10 14:40:58 · 985 阅读 · 0 评论 -
UITextFeild只发生变化触发
- (IBAction)nameChanage:(id)sender { [self judgeIsEnable]; }原创 2014-08-14 14:26:43 · 446 阅读 · 0 评论 -
UILabel显示不同的颜色和字体
NSMutableAttributedString *attributedString = [[NSMutableAttributedString alloc]initWithString:@"hello world"]; [attributedString addAttribute:NSForegroundColorAttributeName value:[UI原创 2014-09-12 17:40:58 · 531 阅读 · 0 评论 -
OC字符串写入到.txt文件中
void writeToFile() { NSString* path = @"/Users/qianfeng/ceshi.txt";//这个是准备存放字符串的文件的路径 NSError *error; [_str writeToFile:fileName atomically:YES encoding:NSUTF8StringEnco原创 2014-04-02 19:01:05 · 2540 阅读 · 0 评论 -
获取昨天的时间
+ (NSString *)yesterdayDate { NSDate *yesterday = [NSDate dateWithTimeIntervalSinceNow:-(24*60*60)]; NSDateFormatter *formatter = [[NSDateFormatter alloc] init ]; [formatter原创 2014-09-26 17:15:07 · 411 阅读 · 0 评论 -
iOS 7.0 设置长文本UILabel高度
- (CGSize)stringBoundingRectWithSize:(CGSize)contentSize font:(UIFont *)font text:(NSString *)text { NSMutableParagraphStyle *paragraphStyle = [[NSMutableParagraphStyle alloc]init];原创 2014-09-16 14:34:52 · 458 阅读 · 0 评论