自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(134)
  • 资源 (2)
  • 收藏
  • 关注

Xcode10 运行报错 Copy Pods Resources

 Showing Recent Messages:-1: Multiple commands produce '/Users/siruoxian/Library/Developer/Xcode/DerivedData/appDemo-cuslchramlktdfchvntczwoqjqyq/Build/Products/Debug-iphoneos/appDemo.app':1) T...

2018-10-09 15:29:14 802

原创 Chromium+depot_tools

最近研究Google的开源项目Chromium,发现网上有好多文章介绍,亲自实践起来还是有些坑,在此记录一下!1.dept_tools  下载:dept_tools下载地址:https://chromium.googlesource.com/chromium/tools/depot_tools/ 在终端中执行以下命令:git clone https://chromium.googlesource....

2018-04-10 16:07:23 2517

原创 常见的IOS APP所用到的第三方库

转自:http://www.liuchendi.com/2016/01/04/iOS/11_ThridPart/?utm_source=tuicool&utm_medium=referral收集了常见的APP所用到的第三方库,提高开发效率弹出视图1、底部弹出栏,可以控制视图差 :ZFDragableModalTransition2、类似微信点击加号弹出的选项视图:kxme...

2018-03-14 16:50:54 359

原创 Xcode9-expected parameter declarator

 check_compile_time() expected parameter declarator定义在 usr/include/AssertMacros.h#ifndef check_compile_time #define check_compile_time( expr ) __Check_Compile_Time( expr )#endif修改chec...

2018-01-12 13:42:51 648

原创 Xcode中的环境变量

一般我们在xcode里面配置包含工程目录下头文件的时候,都要关联着相对路径和绝对路径,如果只是自己用这个项目,用绝对路径的问题不大,但是如果协作开发,这时候绝对路径的缺点立马出现。所以在修改User Header Search Paths这个选项的时候使用"$(SRCROOT)/当前工程名字/需要包含头文件所在文件夹"将上面的双引号里面的字符串拷贝之后,你会发现这个“$(...

2018-01-11 15:46:57 282

原创 判断当前设备是否是64位设备

//判断当前设备是否是64位设备,也可以用这个方法判断是否是32位设备- (BOOL)is64Bit {#if defined(__LP64__) && __LP64__    return YES;#else    return NO;#endif}...

2018-01-03 10:55:34 686

原创 linker command failed with exit code 1

升级到Xcode8之后遇到文件冲突,错误如下:error: linker command failed with exit code 1 (use -v to see invocation)是因为个某个文件中的某一变量或者某一方法名和其他某一文件的变量名或者方法有重复同名,解决方法如下 :在Build Setting里面 NO Common Blocks 设置为NO 官方的解...

2017-05-12 19:39:17 293

华厦邓白氏码查询网址

话不多说,地址如下:https://www.dandb.com/search/?keyword=邓白氏码&country=CP&submit=SEARCH&type=coo&source=%2Finternational-credit-reports%2F

2015-10-23 10:58:56 2357

原创 获取手机所有安装的app

   #include <objc/runtime.h> Class LSApplicationWorkspace_class = objc_getClass("LSApplicationWorkspace");     if (LSApplicationWorkspace_class) {        NSObject* workspace =   [LSA...

2015-05-07 11:09:29 225

关于JS与Native通信时,消息丢失的解决方案

加载一个隐藏的iframe来实现的,通过将iframe的src指定为一个特殊的URL// Javascript语言// 通知iPhone UIWebView 加载url对应的资源// url的格式为: gap:somethingfunction loadURL(url) { var iFrame; iFrame = document.createE...

2015-04-27 11:15:26 195

原创 推送证书生成

生成pem步骤:1.下载下来你配置好的推送证书aps_developer_identity.cer 文件。2.转换 .cer 文件到 .pem 文件:openssl x509 -in aps_developer_identity.cer -inform der-out PushChatCert.pem3.在把你“钥匙”推送证书导出成的.p12到.pem文件:openssl pkcs12 -noce...

2015-01-23 11:37:58 139

原创 获取当前类中所有的方法

 #import <objc/runtime.h> #import <objc/message.h>- (void)methods{         unsigned int count;    Method *methods = class_copyMethodList([self class], &count);   ...

2014-12-30 10:40:28 384

原创 获取当前网络类型

// 0:无网络  1:2g 2:3g 3:4g 5:wifi+(NSInteger)getNetWorkInfo{    UIApplication *app=[UIApplicationsharedApplication];        NSArray *children = [[[app valueForKeyPath:@"statusBar"] valueForKeyP...

2014-12-19 14:23:18 273

原创 oc调用CMD命令

    - (NSString *)executeCommand: (NSString *)cmd    {        NSString *output = [NSString string];        FILE *pipe = popen([cmd cStringUsingEncoding: NSASCIIStringEncoding], "r+");        ...

2014-12-19 14:16:34 1916

原创 PushMeBaby 发布证书推送失败

开发证书正常。切换到发布证书报错:SSLWrite(): -9806 0原因如下:result = SSLSetPeerDomainName(context, "gateway.sandbox.push.apple.com", 30);   改为result = SSLSetPeerDomainName(context, "gateway.push.apple.com", 22);//2...

2014-07-18 17:29:19 196

10.9.3 系统,安装过Xcode6.0后,4.6 及4.4版本都不能用了

 UNCAUGHT EXCEPTION (NSInternalInconsistencyException): Extension Xcode.Device.iPhone class \\\'DVTiPhoneLocator\\\' not found for required key \\\'locatorClass\\\'UserInfo: {    DVTExtensionC...

2014-06-24 18:06:10 114

原创 unable to open object file

/Users/username/Desktop/proj/projName/group/lib.a(manger.o) unable to open object file需要把 GenerateDebugSymbols =NO,project与target都要设置下,

2014-06-18 14:19:17 893

原创 IOS 宏定义

网上看到文章,收藏一下。系统宏汇集__FILE__  当前文件所在目录                           __DATE__                         替代文字”是一个含有编译日期的字符串字面值,日期格式为“mm dd yyyy”(例如:“Mar 19 2006”)。如果日期小于10日,就在日的前面放一个空格符。NSLog(@"_DATE...

2014-05-13 14:31:06 128

原创 自动化打包 ios

通常打包采用xcodebuild和xcrun两个命令,xcodebuild负责编译,xcrun负责将app打成ipa。  常见步骤如下:1、清理工程/usr/bin/xcodebuild -target targetName clean 2、编译工程 /usr/bin/xcodebuild -target targetName3、打包/usr/bin/...

2014-04-17 18:33:57 102

IOS 获取当前系统运行进程

+ (NSArray *)runningProcesses {        int mib[4] = {CTL_KERN, KERN_PROC, KERN_PROC_ALL, 0};    size_t miblen = 4;        size_t size;    int st = sysctl(mib, miblen, NULL, &size, NUL...

2014-04-02 15:07:29 614

原创 iOS 7.1下itms-services在线安装失败的解决方法

iOS 7.1正式版发布了,之前使用itms-services://URL方式在线安装ipa文件的方法失效了,点击的时候报错为:“无法安装应用程序,因xxx.com的证书无效”其实iOS 7.1修改了manifest.plist文件的访问协议,之前可以通过http协议访问,在iOS 7.1之后必须使用https协议方式访问。比如之前的链接代码为:itms-services://?a...

2014-03-11 18:29:46 1496

原创 ios获取文件的MD5值

看到的好东西,留着以后用得着,原文地址:http://blog.csdn.net/shouqiangwei/article/details/12286503一般我们在使用http或者socket上传或者下载文件的时候,经常会在完成之后经行一次MD5值得校验(尤其是在断点续传的时候用的更多),校验MD5值是为了防止在传输的过程当中丢包或者数据包被篡改,在使用MD5之前呢我们应该先了解M...

2014-02-10 16:35:37 197

SLRequest -FaceBook

-(void)facebook{    ACAccountStore *account=[[ACAccountStore alloc] init];  //本机账户数据库, 储存weibo,facebook等各种账户    ACAccountType *accountType=[account accountTypeWithAccountTypeIdentifier:ACAccountT...

2013-11-22 17:38:10 127

原创 SLRequest -Tencent

-(void)tencentWeibo{        ACAccountStore *account=[[ACAccountStore alloc] init];  //本机账户数据库, 储存weibo,facebook等各种账户    ACAccountType *accountType=[account accountTypeWithAccountTypeIdentifier...

2013-11-22 17:34:18 93

原创 SLRequest -Sina

-(void)sinaWeibo{    ACAccountStore *account=[[ACAccountStore alloc] init];  //本机账户数据库, 储存weibo,facebook等各种账户    ACAccountType *accountType=[account accountTypeWithAccountTypeIdentifier:ACAccoun...

2013-11-22 17:33:28 92

SLRequest -Twitter

-(void)twitter{    ACAccountStore *account=[[ACAccountStore alloc] init];  //本机账户数据库, 储存weibo,facebook等各种账户    ACAccountType *accountType=[account accountTypeWithAccountTypeIdentifier:ACAccountTy...

2013-11-22 17:32:44 148

图片背景变透明

-(UIImage *)BackgrounTransparent:(UIImage*)image{    CGImageRef  imageRef = image.CGImage;       size_t width  = CGImageGetWidth(imageRef);        size_t height = CGImageGetHeight(imageRef...

2013-11-22 17:28:34 170

原创 ipa创建deb

1.unzip xxx.ipa2. mkdir Applications3. mv xxx.app Applications4. mkdir DEBIAN5. nano DEBIAN/control6. echo "2.0" > debian-binary7. dpkg-deb -bZ lzma xxxx8. dpkg-scanpackages -m . /d...

2013-11-07 11:05:02 168

原创 change useragent

NSDictionary*dictionary =[NSDictionary dictionaryWithObjectsAndKeys:@"Mozilla/5.0 (iPod; U; CPU iPhone OS 4_3_3 like Mac OS X; ja-jp) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 M...

2013-08-05 15:01:00 175

原创 获取wifi的SSID

#import <SystemConfiguration/CaptiveNetwork.h> - (NSString *)currentWifiSSID {    // Does not work on the simulator.    NSString *ssid = nil;    NSArray *ifs = (id)CNCopySupportedInte...

2013-08-02 15:10:32 2795

iOS AES加密 PHP解密

 1.php代码<?php  $iv_size = mcrypt_get_iv_size(MCRYPT_RIJNDAEL_128, MCRYPT_MODE_ECB);  $iv = mcrypt_create_iv($iv_size, MCRYPT_RAND);  $key = 'a16byteslongkey!a16byteslongkey!';  $plain...

2013-07-02 14:48:58 204

原创 ios系统中各种设置项的url链接

在代码中调用如下代码:(ps: ios 5.0 以后不可用)NSURL*url=[NSURL URLWithString:@"prefs:root=WIFI"];[[UIApplication sharedApplication] openURL:url];即可跳转到设置页面的对应项。[font=]About — prefs:root=General&path=AboutAccessi...

2013-06-25 15:03:25 143

原创 截取屏幕图片

//创建一个基于位图的图形上下文并指定大小为CGSizeMake(200,400)UIGraphicsBeginImageContext(CGSizeMake(200,400)); //renderInContext 呈现接受者及其子范围到指定的上下文[self.view.layer renderInContext:UIGraphicsGetCurrentContext()];    //返回一个...

2013-06-09 14:01:25 79

原创 图片上传

UIImage *image = [UIImage imageNamed:@"1.jpg"]; //图片名NSData *imageData = UIImageJPEGRepresentation(image,0.5);//压缩比例NSLog(@"字节数:%i",[imageData length]);// post urlNSString *urlString =...

2013-06-09 13:59:13 88

原创 图片压缩

- (UIImage*)imageWithImageSimple:(UIImage*)image scaledToSize:(CGSize)newSize{// Create a graphics image contextUIGraphicsBeginImageContext(newSize); // Tell the old image to draw in th...

2013-06-09 13:56:54 63

原创 判断邮箱格式是否正确的代码

-(BOOL)isValidateEmail:(NSString *)email{ NSString *emailRegex = @"[A-Z0-9a-z._%+-]+@[A-Za-z0-9.-]+\\.[A-Za-z]{2,4}"; NSPredicate *emailTest = [NSPredicate predicateWithFormat:@"SELF M...

2013-06-09 13:55:50 609

原创 Undefined symbols for architecture i386或者armv7: “_OBJC_CLASS_$_XXX”

Undefined symbols for architecture i386:“_OBJC_CLASS_$_XXX”, referenced from:objc-class-ref in XXXld: symbol(s) not found for architecture i386clang: error: linker command failed with exi...

2013-05-28 11:14:13 130

原创 iOS Webapp的桌面图标及更新

iOS允许网站开发者像NativeApp一样在iOS设备的主屏幕为其网站添加一个启动Icon,这个代表着网站的Icon在苹果官方开发者文档里被称为“Web Clip”,它的作用类似于桌面浏览器的书签,用户通过点击Icon能直接快速打开这个url的网站。 为了给某个网页或者整个网站指定一个漂亮的桌面启动图标,iOS Safari提供了两个私有接口: apple-touch-icon 和 a...

2013-05-22 09:41:53 208

原创 failed to get the task for process XXX

iOS真机调试程序,报如下错误信息:failed to get the task for process XXX解决方法如下:证书问题,project和targets的证书都必须是开发证书,ADHOC的证书会出现此问题。...

2013-05-21 15:49:37 175

Reason: image not found 错误解决方法

dyld: Library not loaded: /System/Library/Frameworks/Social.framework/Social  Referenced from: /var/mobile/Applications/00D3E0A7-4FF6-451E-B11C-87D7A189F425/sample.app/sample  Reason: image not f...

2013-01-24 10:00:42 712

depot_tools_new

下载的!depot_tools.zip 编译google的开源项目Chromium必备

2018-04-10

depot_tools

depot_tools编译更工具,chromium编译所需工具.git clone'https://chromium.googlesource.com/chromium/tools/depot_tools.git'

2018-04-10

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除