代码改变世界

阅读排行榜

Menu Items are not showing on Action Bar

2014-06-03 18:08 by 三戒1993, 86 阅读, 收藏,
摘要: http://stackoverflow.com/questions/18010072/menu-items-are-not-showing-on-action-bar 版权声明:本文为博主原创文章,未经博主允许不得转载。 ... 阅读全文

UILabel How to set background image

2014-03-24 16:33 by 三戒1993, 86 阅读, 收藏,
摘要: UILabel *myLabel=[[UILabel alloc] initWithFrame:CGRectMake(0, 0, 320, 20)];UIImage *img = [UIImage imageNamed:@"a.png"];CGSize imgSize = myLabel.frame... 阅读全文

iOS 如何计算UIWebView的ContentSize

2014-02-27 17:33 by 三戒1993, 86 阅读, 收藏,
摘要: 首选要等UIWebView加载内容后,然后在它的回调方法里将webview的高度Height设置足够小,就设置为1吧,因为这样才能用sizeThatFits才能计算出webview得内容大小- (void)webViewDidFinishLoad:(UIWebView *)aWebView { ... 阅读全文

Android 读取<meta-data>元素的数据

2014-02-16 21:12 by 三戒1993, 86 阅读, 收藏,
摘要: 在AndroidManifest.xml中, java代码段:ActivityInfo info=this.getPackageManager() .getActivityInfo(getComponentName(), PackageManager.GET_META_DATA); String ... 阅读全文

UIWindow & UIWindowLevel笔记

2014-02-13 11:24 by 三戒1993, 86 阅读, 收藏,
摘要: 一、UIWindow是一种特殊的UIView,通常在一个程序中只会有一个UIWindow,但可以手动创建多个UIWindow,同时加到程序里面。UIWindow在程序中主要起到三个作用: 1、作为容器,包含app所要显示的所有视图 2、传递触摸消息到程序中view和其他对象 3、与UIView... 阅读全文
上一页 1 ··· 358 359 360 361 362 363 364 365 366 ··· 368 下一页