摘要:
用设置背景色的方法,设置一张背景图片: [self.viewsetBackgroundColor:[UIColorcolorWithPatternImage:[UIImageimageNamed:@"indexbg.jpg"]]]; 阅读全文
摘要:
iphone4/4s 应用程序升级适配 iphone5 的方法有很多,而且其中原理在网上也找的到。本次废话不多说,单简要叙述我的过程:综合权衡,我选择用 增加xib文件的方法。第一步:为需要适配找到工程中需要适配iphone5的xib文件,加入是AViewController。首先,到工程文件目录下,找到AViewController.xib文件,然后在同一文件夹下拷贝一份,重命名为AViewController_ip5.xib 文件。第二步:将AViewController_ip5.xib 添加到工程中;因为AViewController_ip5.xib文件是AViewController. 阅读全文
摘要:
参考: http://www.cnblogs.com/minglz/archive/2012/12/11/2809368.html一个view 用两个xib 文件的代码实例:if ([[UIDevice currentDevice] userInterfaceIdiom] == UIUserInterfaceIdiomPhone) { YourViewController *vc = [[[YourViewController alloc] initWithNibName:@"YourViewController_iPhone" bundle:nil] autoreleas 阅读全文
摘要:
一、新建一个single view application类型的iOS application工程,名字取为CustomView,如下图,我们不往CustomViewViewController.xib中添加任何控件:二、新建一个CustomView.xib,过程如下:然后往界面上拖一个label和一个button:接下来得建立CustomViewViewController.xib中的view与CustomView.xib的关联了,即将Custom.xib动态加载,然后将该view做为CustomViewViewController的view的subview,放置于正中显示(设置Custom 阅读全文
摘要:
原帖:http://blog.csdn.net/startexcel/article/details/7211292xib 中, 没有对File's Owner 的Outlets view 进行绑定, 导致在父视图中插入子视图时出错, 在IB中拖拽Files' Owner到view, 添加绑定后, 运行成功!总结一下创建视图和绑定的步骤:1. 创建控制器. File->New File->Iphone OS->Cocoa Touch Class->UIViewController subclass;2. 创建xib. File->New File- 阅读全文
摘要:
CGSize size; size.height = 7; //自定义圆点的大小 size.width = 7; //自定义圆点的大小 [myView setFrame:CGRectMake(dot.frame.origin.x, dot.frame.origin.y, size.width, size.width)]; 阅读全文
摘要:
方法:参考:http://blog.csdn.net/gckjdev/article/details/8072484http://www.cnblogs.com/ygm900/archive/2013/05/24/3096885.htmlhttp://www.cnblogs.com/ygm900/archive/2013/05/23/3095088.html 阅读全文
摘要:
1、使用宏定义方法判断#define iPhone5 ([UIScreen instancesRespondToSelector:@selector(currentMode)] ? CGSizeEqualToSize(CGSizeMake(640, 1136), [[UIScreen mainScreen] currentMode].size) : NO)2、在程序中涉及到全屏的宽高的时候,初始化的时候,代码中不要写320和480#define Screen_height [[UIScreen mainScreen] bounds].size.height#define Screen_wid. 阅读全文
摘要:
1、初始化+ (NSTimer *)timerWithTimeInterval:(NSTimeInterval)ti target:(id)aTarget selector:(SEL)aSelector userInfo:(id)userInfo repeats:(BOOL)yesOrNo;+ (NSTimer *)scheduledTimerWithTimeInterval:(NSTimeInterval)ti target:(id)aTarget selector:(SEL)aSelector userInfo:(id)userInfo repeats:(BOOL)yesOrNo;注:不用 阅读全文
摘要:
参考:http://blog.csdn.net/wbw1985/article/details/7874688 IOS开发之---static变量在静态方法中使用变量,需要将变量声明为static 类型。而且,声明的位置不是在.h文件中,而是.m文件中。例子:.m文件#import "InterfaceHelper.h"static UIAlertView *waitAlert; //在这个位置进行声明@implementation InterfaceHelper 阅读全文
摘要:
//大全//读取数据库数据-(void)movethesqlitefile{NSString*sourcepath=[[NSBundlemainBundle]pathForResource:@"database"ofType:@"sqlite"];NSLog(@"===================================%@",sourcepath);NSFileManager*filemanager=[NSFileManagerdefaultManager]; NSString*documentsDirectory= [ 阅读全文
摘要:
iphone的UIPageControl控件可以显示用户huan'dong滑动到的页码。但是里面的小点的颜色时默认的白色。如果背景也是白色的hu话,你就悲剧了。于是乎上网找了一些资料,找到了改变UIPageControl空间xiao'da小点颜色的方法。解决fang'r方法如下:GrayPageControl.h:#import <Foundation/Foundation.h>@interface GrayPageControl : UIPageControl{ UIImage* activeImage; UIImage* inactiveImage;}@ 阅读全文
摘要:
代码的世界中,一个逻辑套着另外一个逻辑,如何让每一种逻辑在代码中都有迹可循?这正式框架的意义所在! 阅读全文