- 浏览: 237759 次
- 性别:
- 来自: 北京
最新评论
-
windylel:
你的证书通过ca认证了吗?
iOS 7.1下itms-services在线安装失败的解决方法 -
lkocok2:
siruoxian 写道这个不是直接修改就可以。需要专门的服务 ...
iOS 7.1下itms-services在线安装失败的解决方法 -
zxy2543:
ssl验证必须通过什么机构认证吗?
iOS 7.1下itms-services在线安装失败的解决方法 -
zxy2543:
https://example.com/manifest.pl ...
iOS 7.1下itms-services在线安装失败的解决方法 -
siruoxian:
这个不是直接修改就可以。需要专门的服务器来支持。这个我已经验证 ...
iOS 7.1下itms-services在线安装失败的解决方法
文章列表
最近使用Xcode 10.1运行App的时候,控制台总是频繁打印如下日志:
2019-02-27 17:43:19.239825+0800 siruoxian[28799:1433202] [NetworkInfo] Signal strength query returned error: Error Domain=NSPOSIXErrorDomain Code=13 "Permission denied", descriptor: <CTServiceDescriptor 0x2814f7b40, domain=1, instance=1>
经查证和[C ...
Showing Recent Messages
:-1: Multiple commands produce '/Users/siruoxian/Library/Developer/Xcode/DerivedData/appDemo-cuslchramlktdfchvntczwoqjqyq/Build/Products/Debug-iphoneos/appDemo.app':
1) Target 'appDemo' has create directory command with output '/Users/siruoxian/Library/Developer/Xcode/De ...
转自:http://www.liuchendi.com/2016/01/04/iOS/11_ThridPart/?utm_source=tuicool&utm_medium=referral
收集了常见的APP所用到的第三方库,提高开发效率
弹出视图
1、底部弹出栏,可以控制视图差 :ZFDragableModalTransition
2、类似微信点击加号弹出的 ...
check_compile_time() expected parameter declarator
定义在 usr/include/AssertMacros.h
#ifndef check_compile_time
#define check_compile_time( expr ) __Check_Compile_Time( expr )
#endif
修改check_compile_time为__Check_Compile_Time 解决了报错。
参考:http://blog.csdn.net/xjh093/article/details/78599759
一般我们在xcode里面配置包含工程目录下头文件的时候,都要关联着相对路径和绝对路径,如果只是自己用这个项目,用绝对路径的问题不大,但是如果协作开发,这时候绝对路径的缺点立马出现。
所以在修改User Header Search Paths这个选项的时候使用
"$(SRCROOT)/当前工程名字/需要包含头文件所在文件夹"
将上面的双引号里面的字符串拷贝之后,你会发现这个“$(SRCROOT)”,会自动变成当前工程所以的目录。
一、xcode中的环境变量
$(BUILT_PRODUCTS_DIR)
build成功后的,最终产品路径--可以在Build ...
判断当前设备是否是64位设备
- 博客分类:
- iphone
//判断当前设备是否是64位设备,也可以用这个方法判断是否是32位设备
- (BOOL)is64Bit {
#if defined(__LP64__) && __LP64__
return YES;
#else
return NO;
#endif
}
升级到Xcode8之后遇到文件冲突,错误如下:
error: linker command failed with
话不多说,地址如下:
https://www.dandb.com/search/?keyword=邓白氏码&country=CP&submit=SEARCH&type=coo&source=%2Finternational-credit-reports%2F
#include <objc/runtime.h>
Class LSApplicationWorkspace_class = objc_getClass("LSApplicationWorkspace");
if (LSApplicationWorkspace_class) {
NSObject* workspace = [LSApplicationWorkspace_class defaultWorkspace];;//[LSApplicationWorkspace_class performSelecto ...
加载一个隐藏的iframe来实现的,通过将iframe的src指定为一个特殊的URL
生成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 -nocerts -out PushChatKey.pem -in PushChatKey.p12Enter Import Password:MAC verified OK
#import <objc/runtime.h>
#import <objc/message.h>
- (void)methods
{
unsigned int count;
Method *methods = class_copyMethodList([self class], &count);
for (int i = 0; i < count; i++)
{
Method method = methods[i];
SEL sele ...
// 0:无网络 1:2g 2:3g 3:4g 5:wifi
+(NSInteger)getNetWorkInfo{
UIApplication *app=[UIApplicationsharedApplication];
NSArray *children = [[[app valueForKeyPath:@"statusBar"] valueForKeyPath:@"foregroundView"] subviews];
int type =0;
for (id child in childre ...
- (NSString *)executeCommand: (NSString *)cmd
{
NSString *output = [NSString string];
FILE *pipe = popen([cmd cStringUsingEncoding: NSASCIIStringEncoding], "r+");
if (!pipe)
return @"";
char buf[1024];
while ...
开发证书正常。切换到发布证书报错:SSLWrite(): -9806 0
原因如下:
result = SSLSetPeerDomainName(context, "gateway.sandbox.push.apple.com", 30); 改为result = SSLSetPeerDomainName(context, "gateway.push.apple.com", 22);//22表示gateway.push.apple.com地址的长度