1 前言
在很多国外计算机书本和一些第三份开源软件的Demo中经常用到两个英文单词Foo,Bar。这到底是什么意思呢?从步入屌丝界的IT生活简单这两个单词到现在我还是不知道这两个单词的真正含义,今天有必要查查总结下。
2 维基百科上的解释 原文: The terms foobar, foo, bar...
分类:
其他好文 时间:
2014-05-30 07:56:14
阅读次数:
579
由于在做一个ios的通用设计平台,那么客户端解析的时候就涉及到一些ios不同版本,不同分辨率的适配问题首先碰到的就是navigation
bar中的item的背景色的问题在ios7中设置settintcolor背景是透明的,图标和字默认是白色的,效果不错,但是在ios
6是,背景色也被设置成了白色,...
分类:
移动开发 时间:
2014-05-29 09:49:39
阅读次数:
278
Search bar delegate-
(void)searchBarTextDidBeginEditing:(UISearchBar *)searchBar{ UITextField
*searchBarTextField = nil; for (UIView *mainview i...
分类:
移动开发 时间:
2014-05-26 07:25:46
阅读次数:
310
今天到UITabBarController 结合 UIPickView, 这里一共有5个实现,
由浅到易。其实在IB上面使用UITabBarController很简单, 就像平常拖控件一样拖到界面上面, 然后把Tab Bar
Item拉到UITabBarController就可以增加底下的tab, ...
分类:
移动开发 时间:
2014-05-26 07:04:17
阅读次数:
375
tar
Examples:
tar -cf archive.tar foo bar # Create archive.tar from files foo and bar.
tar -tvf archive.tar # List all files in archive.tar verbosely.
tar -xf archive.tar ...
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....
分类:
移动开发 时间:
2014-05-23 03:59:43
阅读次数:
364
介绍在在title bar上显示indeterminate progress
/*
* Copyright (C) 2007 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file ...
分类:
其他好文 时间:
2014-05-23 00:31:27
阅读次数:
352
/*
* Copyright (C) 2007 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* Yo...
分类:
其他好文 时间:
2014-05-23 00:30:50
阅读次数:
415
可能是以前记错了,总认为在ios6上使用了UINavigationController或者TabBarController会因为多了bar而影响子controller的view的frame大小。今天在xcode5.1上验证,无论ios6或者7,使用容器controller,产生了的bar都不会对子c...
分类:
移动开发 时间:
2014-05-22 04:28:02
阅读次数:
339
【题目】
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,3,2,1,2,1], return 6.
The above elevation map is represente...
分类:
移动开发 时间:
2014-05-21 06:44:38
阅读次数:
359