摘要:
loginView.backgroundColor=[UIColorcolorWithHue:0saturation:0brightness:0.9alpha:0.85];可随意调 阅读全文
摘要:
int hS =_timeValue; //_timeValue 单位毫秒 hS = hS%1000; //毫秒秒 int h = sd/(60*60); //时 int m = sd/60 - h*60; //分 int s = sd - h*(60*60) - m*60; //秒 阅读全文
摘要:
大家好,我在CSDN开通了博客 地址:http://blog.csdn.net/qingjoin1 阅读全文
摘要:
duplicate symbol _kConnectionDown in : //这个错误表示工程中用到了相同的类名 。或const名, 从这个错误来看。_kConnectionDown这个变量重复定义了。只要找到它改回来就可以了。 /user/XXX/XX/X.0 duplicate symbol XXX in : /user/XXX/XX/X.0ld:34 duplicate symbols for architecture i386 Apple Mach-O Linker Error //有可能引起的原因是工程中用到了某个相同的类名。或const ... 阅读全文
摘要:
[self performSelector:@selector(changeText:) withObject:@"Happy aha" afterDelay:1]; 阅读全文
摘要:
NSArray *_firstArray = [NSArrayarrayWithObjects:@"ccccc",@"bbbbb",@"ddddd",@"aaaaa",nil]; NSArray *_sortedArray= [_firstArray sortedArrayUsingSelector:@selector(compare:)];NSLog(@"未排序:%@",_firstArray); NSLog(@"排行后:%@",_sortedArray); 阅读全文
摘要:
TestObj.h/**********************/#import <Foundation/Foundation.h>@interface TestObj : NSObject@property(nonatomic, retain)NSString *str;+(TestObj*)shareObj;@endTestObj.m/**********************/#import "TestObj.h"@implementation TestObj@synthesize str;static TestObj *shareobj = nil;+ 阅读全文
摘要:
这个问题一般是用到jsonkit的时候引起的找到 targets -> Linking->Other Linker Flags 添加-ObjC 一般情况下是没有问题了。另外一种情况: 如果是做静态库的开发。那么有可能客户端不能添加 -ObjC 我就是遇到过这种情况 。解决办法。 原因是我的targets 静态库的targets 里面包含了 appDelegate.m 这个文件。所以才会导致别的地方不能用这个静态库。 找到 静态库的targets Complile Sources 然后找到AppDelegate.m删除这个文件。这样生成的.a文件在别的地方就能正常遥用了 阅读全文
摘要:
//versionAlertView最好设为全局versionAlertView = [[UIAlertView alloc] initWithTitle:@"标题" message:@"One Style\nOne Style\nOne Style\nOne Style\nOne Style\nOne Style\nOne Style\nOne Style\nOne Style\nOne Style\nOne Style\nOne Style\nOne Style" delegate:self cancelButtonTitle:@"canc 阅读全文
摘要:
//// ViewController.m// ZBarDemo//// Created by qingyun on 4/9/13.// Copyright (c) 2013 qingyun. All rights reserved.//#import "ViewController.h"#import "QRCodeGenerator.h"@interface ViewController ()@end@implementation ViewController- (void)viewDidLoad{ [super viewDidLoad]; _inp 阅读全文