发布时间:2014-06-26 21:02:10
iOS 两个tableview的 瀑布流1. [代码]Objective-C //// DocViewController.m// getrightbutton//// Created by 隋文涛 on 12-12-9.// Copyright (c) 2012年 隋文涛. All rights reserved.//#import "DocViewController.h"#define heightofimage(image) image.size..........【阅读全文】
发布时间:2014-06-26 20:56:24
通过读取系统网络接口信息,获取当前iphone设备的流量相关信息,统计的是上次开机至今的流量信息. 1. [代码][C/C++]代码 -(void)checkNetworkflow{ struct ifaddrs *ifa_list = 0, *ifa; if (getifaddrs(&ifa_list) == -1) { r.........【阅读全文】
发布时间:2014-06-26 20:50:32
获取iphone磁盘总大小、已使用空间、空闲空间 1. [代码][C/C++]代码 跳至 [1] [全屏预览]-(float)getFreeDiskspace { float totalSpace; float totalFreeSpace; float totalUsedSpace; NSError *error = nil; &nbs.........【阅读全文】
发布时间:2014-06-26 20:46:17
Reachability只能区分出无网络、wifi和wwan(2G&2.5G&3G)类型的网络连接类型,只需重构networkStatusForFlags方法,即可详细区分出2G与3G网络 1. [代码][C/C++]代码 //Reachability.m 中 networkStatusForFlags 方法重构- (NetworkStatus) networkStatusForFlags: (SCNetworkReachabilityFlags).........【阅读全文】
发布时间:2014-06-25 16:13:37
方法scrollTo: (内容的左上角)达到某个地点scrollBy: 根据当前位置,再移动多少属性:mScrollX, 以下是文档解释The offset, in pixels, by which the content of this view is scrolled horizontally.mScrollY, 以下是文档解释The offset, in pixels, by which the con.........【阅读全文】