摘要:
首先进入头文件:#import #import #import #define kChosenDigestLength CC_SHA1_DIGEST_LENGTH #define DESKEY @"D6D2402F1C98E208FF2E863AA29334BD65AE1932A821... 阅读全文
摘要:
int main(int argc, char * argv[]){ @autoreleasepool { return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); ... 阅读全文
摘要:
[[UIScreen mainScreen] scale]详解当屏幕分别为640x940时[[UIScreen mainScreen] scale]=2.0当屏幕分别为320x480时[[UIScreen mainScreen] scale]=1.0由于iphone 早起的设备都是屏幕分辨率是320... 阅读全文
摘要:
CGRect screenBounds = [ [UIScreen mainScreen]bounds];//返回的是带有状态栏的Rect NSLog(@"%@", NSStringFromCGRect(screenBounds)); CGRect viewBounds = [ [U... 阅读全文
摘要:
这个方法很实用,特别是在做水印相机得时候。。。- (UIImage*) imageWithUIView:(UIView*) view{ // 创建一个bitmap的context // 并把它设置成为当前正在使用的context UIGraphicsBeginImageCo... 阅读全文
摘要:
1.Project-->Info-->Localizations添加Chinese2.修改Target-->Info-->Localization native development region : China 阅读全文
摘要:
[YourtextField setValue:[UIColor colorWithRed:97.0/255.0 green:1.0/255.0 blue:17.0/255.0 alpha:1.0] forKeyPath:@"_placeholderLabel.textColor"]; 阅读全文
摘要:
if (isIOS7) { mySearchBar=[[UISearchBar alloc]initWithFrame:CGRectMake(0, 0, 320, 44)]; mySearchBar.autocorrectionType = UITextAutocor... 阅读全文
摘要:
[[UILabel appearanceWhenContainedIn:[UISearchBar class], nil] setTextColor:[UIColor redColor]]; 阅读全文
摘要:
UITextField *searchField = [mySearchBar valueForKey:@"_searchField"]; searchField.textColor = [UIColor blueColor]; //You can put any color here. 阅读全文