第一次玩Xposed框架,按照多个demo的格式写了一个demo发现死活不进入public abstract void handleLoadPackage(LoadPackageParam lpparam) throws Throwable;方法,去/data/data/de.robv.androi...
分类:
移动开发 时间:
2015-06-27 18:14:23
阅读次数:
283
Google interview question:一个二维数组,有两个方法,一个是update(x,y),更新一个cell的值,一个是query(x1,y1,x2,y2),查询(x1,y1,x2,y2)矩形内所有元素的和。Senario 1. update调用次数远大于query。Senario ...
分类:
其他好文 时间:
2015-06-27 06:26:03
阅读次数:
169
1 #import "AppDelegate.h" 2 3 @interface AppDelegate () 4 5 @end 6 7 @implementation AppDelegate 8 9 10 - (BOOL)appli...
分类:
其他好文 时间:
2015-06-26 17:35:27
阅读次数:
167
#import "ViewController.h"
#import "AFNetworking.h"
@interface ViewController ()
@end
@implementation ViewController
- (void)viewDidLoad {
[super viewDidLoad];
}
-(void)touches...
分类:
Web程序 时间:
2015-06-26 13:32:24
阅读次数:
132
#import "ViewController.h"
@interface ViewController ()
@property(nonatomic,weak)UIWebView* web;
@end
@implementation ViewController
- (void)viewDidLoad {
[super viewDidLoad];
...
分类:
Web程序 时间:
2015-06-26 12:57:46
阅读次数:
157
#import "AppDelegate.h"@interface AppDelegate ()@end@implementation AppDelegate- (BOOL)application:(UIApplication *)application didFinishLaunchingWith...
分类:
其他好文 时间:
2015-06-26 01:37:49
阅读次数:
100
自动布局#import "ViewController.h"#import @interface ViewController ()@property (weak, nonatomic) IBOutlet UIButton *buttonImg;@end@implementation ViewCon...
分类:
其他好文 时间:
2015-06-25 17:12:34
阅读次数:
146
描述:UIWebVIew
是IOS一个常见的控件,属内置的浏览器控件,可以用来加载网页,或是打开文件等等。
方法一:
代码实现:(运行程序时,直接显示链接的内容)
#import "ViewController.h"
@interface
ViewController ()
@end
@implementation ...
分类:
Web程序 时间:
2015-06-25 15:38:09
阅读次数:
107
自定义GXCustomButton类继承自UIButton类.m中的代码如下:#import "GXCustomButton.h"#defineKSImageScale0.6@implementation GXCustomButton#pragma mark 设置Button内部的image的范围-...
分类:
其他好文 时间:
2015-06-24 16:07:29
阅读次数:
92
1, 生命周期
在android官方文档中,推荐我们在onResume中进行 registerReceiver, 在onPause中进行unRegisterReceiver, 他们给出的理由是:
If registering a receiver in your Activity.onResume() implementation, you should unreg...
分类:
移动开发 时间:
2015-06-23 17:54:15
阅读次数:
185