`
lizhuang
  • 浏览: 903777 次
  • 性别: Icon_minigender_1
  • 来自: 上海
社区版块
存档分类
最新评论
文章列表
在iPad应用开发时如何让设备只支持横屏(landscape)模式,我做了多次尝试,并没有发现比较简捷的设置方法。我尝试了大概大概3种方式。 1、通过XCode设置“iPad Deployment info”,只选择横屏左和横屏右,部署测试后并没有生效,这种方法实质是在xxx_info.plist项目配置文件中添加如下信息: <key>UISupportedInterfaceOrientations~ipad</key> <array> <string>UIInterfaceOrientationLandscapeLeft</string&g ...
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation 此方法iOS6已经不支持。 #if 0 - (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {     // Return YES for supported orientations.     return YES; } #endif #if 1 - (BOOL)s ...
if ([UIScreen mainScreen].bounds.size.height > 480.0) {         backgroundImageView.image = [UIImage imageNamed:@"tgxx_bg-568h@2x.png"];     }
终端输入命令: sudo find /Users/iMilo/Applications/2012/ -name ".svn" -exec rm -r {} \;
安装mac ports失败后,强制关机,重装成功。 1.选择关机 2.强制退出死的程序,option+command+est 3.长按电源开关6秒左右……
C的两种方式: UIImage *image1 = [UIImage imageWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"image1.jpg" ofType:nil]]; UIImage *image1 = [UIImage imageNamed:@"image1.jpg"]; 这两种方式有什么区别?什么时候该使用哪一种方式,跟效率有关么? UIImage imageNamed If this is the first time the image is being l ...
bundle是一个目录,其中包含了程序会使用到的资源. 这些资源包含了如图像,声音,编译好的代码,nib文件(用户也会把bundle称为plug-in). 对应bundle,cocoa提供了类NSBundle. 我们的程序是一个bundle. 在Finder中,一个应用程序看上去和其他文件没有什么区别. 但是实际上它是一个包含了nib文件,编译代码,以及其他资源的目录. 我们把这个目录叫做程序的main bundle bundle中的有些资源可以本地化.例如,对于foo.nib,我们可以有两个版本: 一个针对英语用户,一个针对法语用户. 在bundle中就会有两个子目录:English.lpro ...
昨天这个错误又出现了,并不是因为重新删除后再打开的问题,我错了。 真正的原因是因为路径的错误, 首先我导入的第三方框架的时候,只是从一个工程把类拖到另一个工程里面,这样的话只是显示在工程的表面而已,不是 ...
%@ 对象   %d, %i 整数   %u   无符整形   %f 浮点/双字   %x, %X 二进制整数   %o 八进制整数   %zu size_t   %p 指针   %e   浮点/双字 (科学计算)   %g   浮点/双字   %s C 字符串   %.*s Pascal字符串   %c 字符   %C unichar   %lld 64位长整数(long long)   %llu   无符64位长整数   %Lf 64位双字
程序发布后,有时要将程序改回原来的开发者账户,就会遇到以上的问题。 修改了project build settings下的Code Signing 到 iPhone Developer之后,需要删除真机上的程序,并重新启动XCODE,才能将程序部署到真机。 很蛋疼的问题,stackoverflow上有不少的人遇到过。
升级4.4后,文件合并的工具因为要调命令行,不能使用了。 看这个帖子的解决方法 http://leenjewel.blog.163.com/ 也正是因为这个安装路径的变化导致需要更新 xcode-select 路径。当然想在终端下 make 编译,单独安装 Command line tools 也是必不可少的。安装玩 Command line tool 包后,只需在终端执行一下这个命令就可以了。 sudo /usr/bin/xcode-select  -switch  /Applications/Xcode/Contents/Developer/ 我的情况是 sudo /usr/bin ...
<?php $categories = get_categories(); foreach ($categories as $cat) :?> <div class="category_box"> <?php // get most recent post in cat query_posts('posts_per_page=1&cat='.$cat->cat_ID); if (have_posts()) : while (have_posts()) : the_post(); ?> <h2&g ...
当APP中使用到tabbar,会出现部分按钮无法响应的问题。在xcode的控制台中也会报出相应的错误,提示使用从tabbar加载的信息。 Presenting action sheet clipped by its superview. Some controls might not respond to touches. On iPhone try -[UIActionSheet showFromTabBar:] or -[UIActionSheet showFromToolbar:] instead of -[UIActionSheet showInView:]. 解决方法如下: UI ...
ar      Arabic cs      čeština da      Dansk de      Deutsch el      Ελληνικά en      English es      Español fi      Suomi fr      français he      עברית hr      Hrvatski id      Bahasa Indonesia it      Italiano ja      日本語 ko      한국 nb      Norsk (Bokmål) nl      Nederlands pl      Polski pt      ...
// 从路径中获得完整的文件名(带后缀)      exestr = [filePath lastPathComponent];  NSLog(@"%@",exestr);  // 获得文件名(不带后缀)  exestr = [exestr stringByDeletingPathExtension];      NSLog(@"%@",exestr);    // 获得文件的扩展类型(不带'.')  exestr = [filePath pathExtension];  NSLog(@"%@",exestr);  NSString ...
Global site tag (gtag.js) - Google Analytics