摘要: http://www.gocalf.com/blog/iphone-dev-hide-status-bar.html1、在info.plist里面 Status bar is initially hidden 设置为 YES2、在appDelagate里面 设置[application setStatusBarHidden:NOwithAnimation:UIStatusBarAnimationFade]; 即可。App启动时就隐藏状态栏用了上面的方法之后,App在运行过程中,状态栏确实被隐藏起来了,但是我发现在App启动的那个瞬间,还是可以看到状态栏的,然后一闪即过。虽然时间很短暂,看着还是 阅读全文
posted @ 2012-05-28 11:18 worldworld 阅读(2139) 评论(0) 推荐(0) 编辑
摘要: 大家在新建文件的时候默认在文件的开关都会生成这样的注释:/**** Created by XX on 08-9-4.* Copyright 2008 __MyCompany__. All rights reserved.**/每次要拖动改__MyCompany__很麻烦,可以直接在命令行下输入: defaults write com.apple.xcode PBXCustomTemplateMacroDefiniti***** '{ ORGANIZATIONNAME = "cryfish"; }'重启XCode,这样新建文件的J__MyCompany__就自 阅读全文
posted @ 2012-05-27 23:59 worldworld 阅读(137) 评论(0) 推荐(0) 编辑
摘要: 我找到获得界面语言设置的方法了:NSUserDefaults* defs = [NSUserDefaults standardUserDefaults];NSArray* languages = [defs objectForKey:@"AppleLanguages"];NSString* preferredLang = [languages objectAtIndex:0]; 阅读全文
posted @ 2012-05-27 23:21 worldworld 阅读(130) 评论(0) 推荐(0) 编辑
摘要: 最右侧加图片是以下代码,UIImageView *imgv=[[UIImageView alloc] initWithImage:[UIImage imageNamed:@"right.png"]];text.rightView=imgv;text.rightViewMode = UITextFieldViewModeAlways;如果是在最左侧加图片就换成:text.leftView=imgv;text.leftViewMode = UITextFieldViewModeAlways;UITextField继承自 UIControl,此类中有一个属性contentVert 阅读全文
posted @ 2012-05-25 10:01 worldworld 阅读(278) 评论(0) 推荐(0) 编辑
摘要: textRectForBounds:Returns the drawing rectangle for the text field’s text.- (CGRect)textRectForBounds:(CGRect)boundsParametersboundsThe bounding rectangle of the receiver.Return ValueThe computed drawing rectangle for the label’s text.DiscussionYou should not call this method directly. If you want t 阅读全文
posted @ 2012-05-24 19:06 worldworld 阅读(669) 评论(0) 推荐(0) 编辑
摘要: UISearchBar是无法修改其 textField的大小的http://stackoverflow.com/questions/556814/changing-the-size-of-the-uisearchbar-textfieldThe text field used in UISearchBar is a subclass of UITextField called UISearchBarTextField.AFAIK, there's no way to resize a UISearchBarTextField using the public API, and thep 阅读全文
posted @ 2012-05-24 18:42 worldworld 阅读(1003) 评论(0) 推荐(0) 编辑
摘要: http://cnbeta.com/articles/188721.htm集成开发环境(IDE)可以给程序员提供很大的帮助。大多数的IDE包含编译器和解释器。例如微软的 Visual Studio 本身内置的编译器和解释就是很好的例子,Eclipse 是另一个很好的例子。鼓励程序员使用IDE的主要原因是开发软件应用程序的各个组成部分之间可方便的进行切换。一般一个特定的IDE是负责处理一种编程语言,但也有一些支持多种编程语言的 IDE,例如 NetBeans,Microsoft Visual Studio,MyEclipse,WinDev和Xcode等等。IDE 的宗旨是提供了一个强大和易于使用 阅读全文
posted @ 2012-05-23 19:25 worldworld 阅读(315) 评论(0) 推荐(0) 编辑
摘要: http://blog.sina.com.cn/s/blog_677089db0100us05.htmlhttp://hi.baidu.com/popln/blog/item/a8f3921e2944701f304e15c3.html// Implement viewDidLoad to do additional setup after loading the view, typically from a nib.- (void)viewDidLoad {[super viewDidLoad];self.view.backgroundColor=[UIColor whiteColor];UI 阅读全文
posted @ 2012-05-23 17:51 worldworld 阅读(3589) 评论(0) 推荐(0) 编辑
摘要: rm -rf three20http://www.flutterstudio.com/internet/2610.htmlrm 删除命令。即remove的缩写,它后面有两个参数。-r 删除文件夹内的子文件夹及内容,一般情况下rm只能删 除文件或者空的文件夹。-f 强制删除参数如果需要了解rm命令的更多参数。请输入:man rm 阅读全文
posted @ 2012-05-21 23:46 worldworld 阅读(28297) 评论(0) 推荐(0) 编辑
摘要: http://blog.csdn.net/x1135768777/article/details/7505903MPMoviePlayerController 与AVAudioPlayer有点类似,前者播放视频,后者播放音频,不过也有很大不同,MPMoviePlayerController 可以直接通过远程URL初始化,而AVAudioPlayer则不可以。不过大体上用起来感觉差不多。在这之前当然要包含库文件的#import<MediaPlayer/MediaPlayer.h>1.创建MPMoviePlayerController 类通过一个NSURL来初始化,这个URL可以使本地 阅读全文
posted @ 2012-05-14 19:12 worldworld 阅读(478) 评论(0) 推荐(0) 编辑