Given n non-negative
integers representing the histogram's bar height where the width of each bar is 1, find the area of largest rectangle in the histogram.
Above is a histogram where wid...
分类:
其他好文 时间:
2014-11-11 22:52:05
阅读次数:
247
http://www.mediawiki.org/wiki/Manual:Coding_conventions/PHPassignment作为expression来用看起来像个错误// Noif ( $a = foo() ) { bar();}// Yes$a = foo();if ( $a ...
分类:
Web程序 时间:
2014-11-10 19:50:20
阅读次数:
209
解决方法 1:自从IOS7后UINavigationBar的一些属性的行为发生了变化.你可以在下图看到:现在,如果你要修改它们的颜色,用下面的代码:1234self.navigationController.navigationBar.barTintColor=[UIColorblackColor]...
分类:
移动开发 时间:
2014-11-10 19:26:26
阅读次数:
237
在iOS应用开发中,经常需要为导航栏和标签栏设置相同的主题,一个一个去设置的话,就太麻烦了,可以通过对应用中所有的导航栏和标签栏同意设置背景、字体等属性。 如:创建一个继承自“UINavigationController”的公共父类,然后应用中所有的NavigationController都继...
分类:
移动开发 时间:
2014-11-08 18:00:51
阅读次数:
210
开发环境:Xcode 6.1 iOS 7.1.2 & iOS 8.1
实现功能一,在打开APP时即显示第三个Tab对应的View;
实现功能二,给每一个Tab设置图片和选中图片。
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOption...
分类:
移动开发 时间:
2014-11-08 02:10:50
阅读次数:
204
info.plist文件中,View controller-based status bar appearance项设为YES,则View controller对status bar的设置优先级高于application的设置。为NO则以application的设置为准,view controller的prefersStatusBarHidden方法无效,是根本不会被调用的。
一、如果V...
分类:
移动开发 时间:
2014-11-07 11:27:16
阅读次数:
255
在iOS 7中,苹果引入了一个新的属性,叫做[UIViewController setEdgesForExtendedLayout:],它的默认值为UIRectEdgeAll。当你的容器是navigation controller时,默认的布局将从navigation bar的顶部开始。这就是为什么所有的UI元素都往上漂移了44pt。有时会加上顶部tool bar的高度 20, 20+44 = 6...
分类:
移动开发 时间:
2014-11-07 11:25:19
阅读次数:
191
以下两种情况是我在开发过程中遇到的,一种是代码使用pushViewController,另一种是storyboard直接使用push。之前也查阅了很多关于隐藏底部tabbar的资料,但是要么使用起来麻烦,要么就是藕合度高代码不规范(这里有点代码洁癖,当前类相关的事务应该写在本类中)。
1、使用pushViewController
如A->B;A是列表页,带有tabbar;B是内容页,不需要ta...
分类:
移动开发 时间:
2014-11-06 14:53:28
阅读次数:
193
开发程序时,因为需求需要在status bar上显示东西并可以点击,还要有点击的东西的window level高于status bar,所以使用了多个uiwindow,结果在key window里播放视频时,其他window的坐标被改变了,导致显示不正常。这时只要自定义其他window继承UIWindow,在Window类里增加这个方法,是从UIView继承的,然后判断只要触发需要接收点击的区域就...
分类:
移动开发 时间:
2014-11-06 13:09:09
阅读次数:
253
题目描述:
Given n non-negative integers representing an elevation map where the width of each bar is 1, compute how much water it is able to trap after raining.
For example,
Given [0,1,0,2,1,0,1...
分类:
移动开发 时间:
2014-11-06 13:06:41
阅读次数:
239