iOS
文章平均质量分 56
sunnybunnysunny
这个作者很懒,什么都没留下…
展开
-
iOS tcpdump抓包方法
前提条件:机器要破解,cydia能打开需要工具1.openssh2.tcpdump安装工具方法:1.连接网络,打开cydia2.确认Cydia设置为开发者模式(管理->设置->开发者),在Cydia时面搜索openssh,tcpdump并安装连接方法:1.找到一台电脑与iPhone连接同一个Wifi,在PC能ping通iPhone2.在PC的命令行界转载 2015-08-20 15:04:24 · 498 阅读 · 0 评论 -
iOS系统网络抓包方法
本文用例的需求是:抓取iOS浏览器的html数据包。手头有连着网线的iMac一台(Mac OS X 10.7.2),iOS设备一部。首先我们关闭Wi-Fi,如图1:图1 ↑接下来这步不是必须,为提高一次性成功率,还请照做:删除所有的Wi-Fi记录点图1右下角的Advanced按钮,选到Wi-Fi的Tab,点 – 减号按钮删除干净,如图2,转载 2015-08-20 15:07:52 · 523 阅读 · 0 评论 -
获取ios系统的deviceModel, deviceName, systemName, systemVersion
NSString *deviceModel = [[UIDevice currentDevice] model];NSString *deviceName = [[UIDevice currentDevice] name];NSString *systemName = [[UIDevice currentDevice] systemName];NSString *systemVersi原创 2015-08-20 14:41:16 · 1235 阅读 · 0 评论 -
获取ios系统的电池电量比例,是否充电中,是否充满
// Find the battery level @try { // Get the device UIDevice *Device = [UIDevice currentDevice]; // Set battery monitoring on Device.batteryMonitoringEnabled = YES;原创 2015-08-20 14:43:27 · 2146 阅读 · 0 评论 -
iOS如何判断app是否为第一次启动
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions{ // Override point for customization after application launch. if原创 2015-08-20 14:29:34 · 526 阅读 · 0 评论 -
iOS SDK同时支持模拟器和真机的静态包编译脚本
替换XXXXX为你的工程名字XBUILD=/Applications/Xcode.app/Contents/Developer/usr/bin/xcodebuildPROJECT_ROOT=.PROJECT=$(PROJECT_ROOT)/XXXXXX.xcodeproj# The name of the target is generated by the XcodeTARGET=原创 2015-08-20 16:03:41 · 957 阅读 · 0 评论 -
iOS系统网络抓包方法
在进行iOS开发过程中,经常会遇到各种各样的网络访问问题,以前苦于没有抓包工具,很多网络问题解决起来很痛苦。现在终于好了,本文提供两种方式进行网络抓包: 1. 网络共享 + 可视化抓包工具基本原理原理比较简单,ios设备通过代理方式共享连接mac电脑的无线网卡,使用抓包工具抓包,然后进行分析(我们推荐使用Wireshark,在MAC系统上也可以使用Paros工具)。转载 2015-08-20 15:03:35 · 281 阅读 · 0 评论 -
如何获得ios系统持续运行时间
NSNumber *Days, *Hours, *Minutes; // Get the info about a process NSProcessInfo * processInfo = [NSProcessInfo processInfo]; // Get the uptime of the system NSTimeInterval UptimeInte原创 2015-08-20 14:36:39 · 879 阅读 · 0 评论 -
iOS知识要点总结
1. objective c(nsobject, runtime, )2. concurrent(gcd, operationqueue, nsthread, pthread)3. networking(socket, http)4. uikit(uiview, uicontrol)5. block6. memory management7. coredata, plist原创 2015-01-13 23:15:17 · 243 阅读 · 0 评论 -
iphone手机上的抓包流程和原理概述
在ios应用开发过程中,为了进行端到端的分析,很多时候我们需要对手机的抓包进行分析。对手机的抓包我们要在手机上安装抓包工具:tcpdump前提:手机越狱;安装tcpdump 这样一部iphone就具备了抓包能力。方法1:手机直接抓包(在手机上安装terminal用于输入命令)不受网络条件制约,但由于是在终端上操作抓包,对ios设备来讲,MobileTerm转载 2015-08-20 15:06:39 · 1280 阅读 · 0 评论