doorxp

Blog

获取iOS设备信息(内存/电量/容量/型号/IP地址/当前WIFI名称)

最近工作上需要获取设备的一些信息,整理了一下,方便大家。1.获取电池电量(一般用百分数表示,大家自行处理就好)-(CGFloat)getBatteryQuantity {         return [[UIDevice currentDevice] batteryLevel]; }2.获取电池状态(UIDeviceBatteryState为枚举类型)-(UIDeviceBatt

加快XCode的编译链接速度(200%+)—XCode编译速度慢的解决方案

最近在开发一个大项目的时候遇到一个很头疼的问题,由于项目代码较多,每次都要编译链接1分钟左右,调试的时候很浪费时间,于是研究了一下如何提高编译链接的速度,在这里分享给大家。提升编译链接的速度主要有以下三个方式:1. 提高XCode编译时使用的线程数defaults write com.apple.Xcode PBXNumberOfParallelBuildSubtasks 4XCode默认使用与CPU核数相同的线程来进行编译,但由于编译过程中的IO操作往往

Cocoa: Command /usr/bin/ditto failed with exit code 1

Command /usr/bin/ditto failed with exit code 1For Mac OS Sierra, this work for me:cd  /Users/YOUR_USER_NAME/Library/Developer/Xcode/DerivedDatathenxattr -dr com.apple.FinderInfo *and then rebuild your project..and fix the err

Swift Set 按下标访问

let mySet: Set = ["a", "b", "c", "d"] mySet[advance(mySet.startIndex, 2)] // -> something from the setAs of Xcode7 beta6/Swift2.0:let&

RunLoop

RunLoop是一种事件处理循环机制,类似于中断处理,它可以监听一个或多个定时器源(Timer Sources)和输入源(Input Sources),当没有事件时,它让线程休眠;当有事件发生时,系统唤醒线程,把事件放入RunLoop队列,RunLoop再分发给用户指定的事件处理入口函数。由此可以看出,RunLoop是为了低功耗而设计的,它不会浪费CPU的时间,不会阻止CPU进入低功耗模式,对于对功耗敏感的移动终端来说,在恰当的场合使用它能让你的程序获得更好的性能。RunLoop我们可以通过

iOS 原生二维码扫描代码.

self.captureSession = [[AVCaptureSession alloc] init];          NSError *error;     // Set camera capture device to default and

iOS 原生二维码生成代码.

  @implementation UIImage (QR) + (UIImage *)qrImageForString:(NSString *)string imageSize:(CGFloat)Imagesize {          CIFilter *filter = [CIFilte

iOS 获取ip地址

这写头文件是用于获取ip等系列功能的#include <arpa/inet.h>#include <netdb.h> #include <net/if.h> #include <ifaddrs.h>#import <dlfcn.h> #import <SystemConfiguration/SystemConfiguration.h>  获

obfuscated key / key

struct tKeyMapping {     const char *    obfuscatedKey;     const char *    key; };   static const struct tKeyMapping&n

libMobileGestalt.dylib crashed when Hooking MGCopyAnswer for ARM64

You cannot hook MGCopyAnswer directly because it is too short.When CydiaSubstrate hooks a C function, it sorts of overwrites an assembly version of goto your_function; at the beginning of the original function. This "goto" in ARM64 is 16
«   2024年11月   »
123
45678910
11121314151617
18192021222324
252627282930
控制面板
您好,欢迎到访网站!
  查看权限
网站分类
搜索
最新留言

    Powered By Z-BlogPHP 1.5.1 Zero

    Copyright doorxp.com Rights Reserved.