`
zl4393753
  • 浏览: 340319 次
  • 性别: Icon_minigender_1
  • 来自: 武汉
社区版块
存档分类
最新评论
文章列表
原文地址: http://www.cnblogs.com/pipizhu/archive/2011/05/30/2063235.html 1,创建并使用一个UINavigationController UINavigationController *aNav = [[UINavigationController alloc] init]; 然后添加一个视图进去,否则导航栏也没有意义的 UIViewController *aView = [[UIView alloc] initWithNibName: (*xib文件名*)];[aNav pushViewController:aView a ...
原文链接:http://xiaoyu.li/2012/creat-navigationcontroller-and-tabbarcontroller-at-the-same-time/ 同时创建navigationController和tabBarController 第一种方式是在AppDelegate中将tabBarController作为subView,然后再在tabBarController的基础上增加navigationController,代码如下: 在applicationDidFinishLauchingWithOptions中加入以下代码: -(BOOL)applic ...
NCAppDelegate.h #import <UIKit/UIKit.h> @interface NCAppDelegate : UIResponder <UIApplicationDelegate> { UIWindow *window; UITabBarController *tabBarController; } @property (nonatomic, retain) UIWindow *window; @property (nonatomic, retain) UITabBarController *tabBarContr ...
http://www.freelancer-life.cn/freelancer-websites/international-platform.html http://hi.baidu.com/loveyoursmile/item/07962e8bc2215ad55f0ec1f9
www.getafreelancer.com 描述: 这个网站在国外兼职网站中的地位就相当于新浪在国内新闻网站的地位,Alexa 排名为 950,访问量之大可见一斑。 注意事项: 这个项目网站上非会员接项目需要支付项目金额的10%作为手续费。刚开始的时候站长不熟悉环境,接了个900美元的项目,结果光手续费就收了90美元,心痛啊。现在看了这个介绍,大家可以省下这笔学费了。好在这个项目网站上会员不需要手续费,会费可以月付,每月10美元,相对于项目网站上大量的国外项目来说还是比较超值的。这个项目网站上的不足之处是项目金额普遍不大,而且n多印度人盯着。想和印度人拼价格,估计有难度。这个兼职网站也提供RS ...
创建可拉伸的图片 UIImage *navBarImage = [[UIImage imageNamed:@"header_bkd.png"] stretchableImageWithLeftCapWidth:5 topCapHeight:0.0]; [[UINavigationBar appearance] setBackgroundImage:navBarImage forBarMetrics:UIBarMetrics ...
原文地址:http://wicrewoft.blog.51cto.com/210706/839369 iOS Data Storage Guidelines 和 "do not back up"文件属性   iOS 5有了iCloud后,Apple更新了数据存储指导方针,以适应于iCloud存储,同时增加了“不要备份”文件属性,可以指定文件不备份和上传到iCloud 摘录如下,供大家参考: iOS 数据存储指导方针 iCloud包括了备份,会通过Wi-Fi每天自动备份用户iOS设备。app的home目录下的所有东西都会被备份,除了应用Bundle本身、缓存目录和te ...
二者的区别在于: 1.import会包含这个类的所有信息,包括实体变量和方法,而@class只是告诉编译器,其后面声明的名称是类的名称,至于这些类是如何定义的,暂时不用考虑,后面会再告诉你。 2.在头文件中, 一般只需要知道被引用的类的名称就可以了。 不需要知道其内部的实体变量和方法,所以在头文件中一般使用@class来声明这个名称是类的名称。 而在实现类里面,因为会用到这个引用类的内部的实体变量和方法,所以需要使用#import来包含这个被引用类的头文件。 3.在编译效率方面考虑,如果你有100个头文件都#import了同一个头文件,或者这些文件是依次引用的,如A–>B, B–>C ...
Whenever I have need of a new color in a project, I add new methods to my UIColor(MoreColors) category. I recently refactored it to be more compact and to require less typing to add a new color. I'm pulling the color names and definitions from Wikipedia. Edit: I got tired of doing these piecemeal, s ...
Anyway, you may know this, but in case you didn't (paging Captain Obvious), in the /Applications/Utilities/ folder on your Mac, there is a program called DigitalColor Meter, and it will give you the color value for any pixel on the screen. I used this to grab the correct RGB values from the Contacts ...
Q:  How do I launch the App Store from my iPhone application? Also, how do I link to my application on the store? A: The -[UIApplication openURL:] method handles links to applications and media by launching the appropriate store application for the passed NSURL object. Follow the steps below to obta ...
原文作者:http://www.cnblogs.com/speeding/archive/2011/07/13/2105309.html 在做一个TableView程序时,要在表格里显示一个文件夹内所有文件的清单,程序在一开始显示时正常,但是一滚动窗口时就崩溃,查找这个错误整整花了我一天的时间,原来出在NSMutableArray初始化时用的方法不正确,都是因为Objective-C的基础知识没学好。 在一个UITableViewController类中声明了一个NSMutableArray *localFiles这样一个数组,作为成员变量。 在viewDidLoad方法中读出应用程序Docu ...
In this application we’ll see how to implement a custom accessory view for your UITableView in the form of a checkmark button. Step 1: Create a Window base application using template. Give the name of the application “CheckMark”. Step 2: Xcode automatically creates the directory structure and adds ...
1. Adding a Custom UIBarButtonItem We will use an image in the resources folder called “back.png”. To insert the image as the back button, add this piece of code to the AppDelegate.m file. This should be in the application:didFinishLaunchingWihOptions method. - (BOOL)application:(UIApplication *)app ...
I recently came across a problem while developing and application that has UINavigationController inside a UITabBarController. When i tried to go back in the navigation menu that viewWillAppear or viewDidAppear function of the parent view was not firing up. I searched the net for the solution but was ...
Global site tag (gtag.js) - Google Analytics