码迷,mamicode.com
首页 >  
搜索关键字:implementation    ( 1803个结果
Android Xposed框架出现java.lang.IllegalAccessError: Class ref in pre-verified class resolved to unexpected implementation问题
第一次玩Xposed框架,按照多个demo的格式写了一个demo发现死活不进入public abstract void handleLoadPackage(LoadPackageParam lpparam) throws Throwable;方法,去/data/data/de.robv.androi...
分类:移动开发   时间:2015-06-27 18:14:23    阅读次数:283
2-D range sum query implementation(2-D segment tree)
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
在一个Label上设置多种颜色字体
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
AFNetworking框架的使用
#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
UIWebView的使用,简单浏览器的实现
#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
用UIImageView作出动画效果
#import "AppDelegate.h"@interface AppDelegate ()@end@implementation AppDelegate- (BOOL)application:(UIApplication *)application didFinishLaunchingWith...
分类:其他好文   时间:2015-06-26 01:37:49    阅读次数:100
CALayer的动画跟一个播放音乐的demo
自动布局#import "ViewController.h"#import @interface ViewController ()@property (weak, nonatomic) IBOutlet UIButton *buttonImg;@end@implementation ViewCon...
分类:其他好文   时间:2015-06-25 17:12:34    阅读次数:146
UIWebView --- 内置的浏览器控件 加载网页
描述:UIWebVIew 是IOS一个常见的控件,属内置的浏览器控件,可以用来加载网页,或是打开文件等等。 方法一: 代码实现:(运行程序时,直接显示链接的内容) #import "ViewController.h" @interface ViewController () @end @implementation ...
分类:Web程序   时间:2015-06-25 15:38:09    阅读次数:107
自定义button
自定义GXCustomButton类继承自UIButton类.m中的代码如下:#import "GXCustomButton.h"#defineKSImageScale0.6@implementation GXCustomButton#pragma mark 设置Button内部的image的范围-...
分类:其他好文   时间:2015-06-24 16:07:29    阅读次数:92
android Broadcast 总结
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
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!