`
逍遥一狂
  • 浏览: 190578 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论
文章列表
  系统优化的我一愣一愣的,原来是下面的优化规则   TodoViewController *contentViewController = [[TodoViewController alloc] init]; UINavigationController *navigationController = [[UINavigationController alloc] initWithRootViewController:contentViewController]; navigationC ...
iOS技术群:176078249   UINavigationBar自定义导航栏背景和按钮,完美支持横屏竖屏旋转,视图控制器可以分别使用自己的导航栏 此方法可以通过Apple审核,导航上的按钮背景需要做,否则看起来不那么和之又谐     //CustomNavigationBar.h @interface UINavigationBar (UINavigationBarCategory) UIImageView *backgroundView; - (void)setBackgroundImage:(UIImage*)image; - (void)insertS ...
8080端口重定向到80,因为80端口权限比较高。命令如下 sudo ipfw add 100 fwd 127.0.0.1,8080 tcp from any to any 80 in
方法1. AndroidManifest.xml文件里<activity>里面加上   android:theme="@android:style/Theme.NoTitleBar.Fullscreen"   方法2. 在你的Activity onCreate方法里调用 public void setFullScreen() { requestWindowFeature(Window.FEATURE_NO_TITLE); getWindow().setFlags(WindowManager.LayoutPar ...
创建按钮 UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom]; button.frame = CGRectMake(10.0, 10.0, 100.0, 40.0); [button setTitle:@"Normal" forState:UIControlStateNormal]; UIImage *image = [UIImage imageNamed:@"normal.png"]; UIImage *newImage = [image stretc ...
Xcode代码提示生成源代码程序块默认格式如下,注意左花括号的位置: if ( condition ) { do ... } 因为以前的使用习惯,我想让自动生成的左右花括号都单独成行,变成下面的样子: if ( condition ) { do ... }   在Terminal里面,运行下面命令,然后重启Xcode: defaults write com.apple.Xcode XCCodeSenseFormattingOptions -dict BlockSeparator "\n" 这个命令修改了~ ...
比如地图导航数据G级别的数据,模拟器调试的时候将是个恶梦 后面要做一个导航类应用程序,所以未雨绸缪先纪录下来   设备调试时,把测试数据尽量最小化吧 模拟器调试时,使用固定路径,指定到程序外路径,模拟器貌似没有沙盒,下面代码在模拟器里是可以读取文件的。设备调试时改为resources NSDictionary *dict = [NSDictionary dictionaryWithContentsOfFile:@"/Users/george/Desktop/Test.plist"];
NSArray *familyNames = [UIFont familyNames]; for(NSString *familyName in familyNames) { NSLog(@"%@", familyName); NSArray *fontNames = [UIFont fontNamesForFamilyName:familyName]; for(NSString *fontName in fontNames) { NSLog(@"\t%@", fontName); } }   iPh ...
Examples:   xcodebuild -activetarget -activeconfiguration -sdk iphoneos3.0 xcodebuild -target TargetName -configuration Debug -sdk iphoneos3.0 xcodebuild -target TargetName -configuration Distribution -sdk iphoneos3.0   Manual:   xcodebuild [-project <projectname>] [-activ ...
加班研究这个了,最后发现最简单的码表最解决问题支持20902汉字,最新的6千多生僻字没拿到码表,不过影响不大    
1. 原来看到有人用命令行修改Xcode生成的源文件版权信息,作者和公司名称 defaults write com.apple.Xcode PBXCustomTemplateMacroDefinitions '{"ORGANIZATIONNAME"="XXX.com";}' 2. 今天搜索到一个更简单的办法,只需要在Address Book里修改自己名片里的Company名称就可以了 3. Xcode3.2开始,右击项目->Get Info->General里面可以为每个项目设置Organization Name
原文地址: http://www.frogameleon.com/blog/last-night-an-iphone-zombie-nszombieenabled-saved-my-life   原文大意: 启用NSZombieEnabled,可以在EXC_BAD_ACCESS发生时查看调用堆栈。   使用方法:   To enable it (in xcode) 1. Double-click an executable in the Executables group of your Xcode project. 2. Click the Arguments tab. ...
全部改大写 ls |awk '$0 !~ toupper($0){printf("mv %s %s\n", $0, toupper($0))|"sh"}'   改小写 ls |awk '$0 !~ tolower($0){printf("mv %s %s\n", $0, tolower($0))|"sh"}'  
SVN客户端Cornerstone竟然看不到我的.a库文件,研究了一下SVN和Cornerstone的忽略问题 SVN可以使用pattern做忽略,全局忽略在~/.subversion/config文件里设置,Cornerstone可以自己设置忽略指定的文件,同时Preferences -> Subversion -> Generals里也可以设置Global Ignores. pattern用到的文件名通配符跟Unix shell的通配符是一样的用法
现象: Eclipse Mac版,速度慢,反应慢,尤其是Tab切换更是慢 环境: 操作系统是Snow Leopard 10.6.2 Eclipse版本是3.5.1 Classic ADT版本是0.9.5 解决方案: 修改eclipse.ini,这个文件位于Eclipse包内Contents/MacOS目录下 ...... -vmargs    在这一行后面开始修改 -Dosgi.requiredJavaVersion=1.6      增加这一行,指定使用JAVA1.6 -Xms128m      指定最小内存,把数字调大 -X ...
Global site tag (gtag.js) - Google Analytics