Skip to content

Instantly share code, notes, and snippets.

export GOPATH="$HOME/workspace-dir/"
@xiangyuan
xiangyuan / gist:5289489
Created April 2, 2013 02:25
iphone流量统计
通过读取系统网络接口信息,获取当前iphone设备的流量相关信息,统计的是上次开机至今的流量信息. 2
倒入库:
[html] view plaincopy
SystemConfiguration.framework
加入头文件:
[html] view plaincopy
#include <ifaddrs.h>
#include <sys/socket.h>
#include <net/if.h>
@codeswimmer
codeswimmer / iOS_mirror_image.m
Created December 17, 2011 17:56
iOS: mirror an image
-(UIImage *)makeMirroredImage:(UIImage *)image
{
UIImageOrientation flippedOrientation = UIImageOrientationUpMirrored;
switch (image.imageOrientation) {
case UIImageOrientationDown:
flippedOrientation = UIImageOrientationDownMirrored;
break;
case UIImageOrientationLeft:
flippedOrientation = UIImageOrientationLeftMirrored;
break;