摘要:
代码实现:头文件: #import <UIKit/UIKit.h> #import <QuartzCore/QuartzCore.h> @interface ipad_webwiewViewController : UIViewController { IBOutlet UIWebView *myWebView; UIView *myView; } @property (nonatomic,retain) UIWebView *myWebView; @end代码实现: - (void)viewDidLoad { [super viewDidLoad]; //给图层添加背 阅读全文
摘要:
打印出所有的 info.plist 中的 keys、values// get all keys and values in info.plistNSBundle* mainBundle = [NSBundle mainBundle];NSDictionary* infoDictionary = [mainBundle infoDictionary];id key;NSArray* keys = [infoDictionary allKeys];NSLog(@"Display all keys and values in info.plist\n");for(key in k 阅读全文
摘要:
http://google-styleguide.googlecode.com/svn/trunk/objcguide.xml 阅读全文
摘要:
地址:http://www.w3.org/Addressing/rfc1808.txtRFC 1808 Relative Uniform Resource Locators June 1995格式: <scheme>://<net_loc>/<path>;<params>?<query>#<fragment>each of which, except <scheme>, may be absent from a particular URL. These components are defined as fo 阅读全文
摘要:
- (NSString *)intervalSinceNow: (NSString *) theDate{NSDateFormatter *date=[[NSDateFormatter alloc] init];[date setDateFormat:@"yyyy-MM-dd HH:mm:ss"];NSDate *d=[date dateFromString:theDate];NSTimeInterval late=[d timeIntervalSince1970]*1;NSDate* dat = [NSDate dateWithTimeIntervalSinceNow:0 阅读全文
摘要:
[支持 iPhone 4 Retina 高分屏]UIView *view = [[[[[UIApplication sharedApplication] windows] objectAtIndex:1] subviews] lastObject];//获得某个window的某个subView NSInteger index = 0;//用来给保存的png命名 for (UIView *subView in [view subviews]) {//遍历这个view的subViews if ([subView isKindOfClass:NSClassFromString(@"UIIm 阅读全文
摘要:
官方参考文档:http://developer.apple.com/library/ios/#qa/qa2010/qa1701.html在打开网上下载下来的或者xcode自带的project时,经常会遇到"Base SDK Missing"而不能运行的情况。一般,只要将该项目的“build”选项中的“base sdk”设置为“latest...”后即可正常运行。但还有少数项目即使上面的设置好了后仍不能运行,这时只要将将target的“build”选项中的“base sdk”也设置为“latest...”,然后基本上就能运行了。 阅读全文
摘要:
1、 若将一个view作为子视图添加到window中,则当设备的方向变换时,该视图不会随之变化,也就是所不会响应设备的方向变化事件。如:“图片放大视图”,“报纸选择视图”...要使其响应方向变化事件,最好是将该视图添加到一个视图中而不是window中。2、通过Interface Builder创建的视图默认的背景色是白色的,要使得该视图透明,可以将其背景色改为clearcolor。3、再viewcontroller的viewdidload方法中,self.view一直是nil的。所以在viewdidload中使用[uiactionsheet showinview:self.view];就会使程 阅读全文
摘要:
1、初始化UIPopoverController UIPopoverController *popover = [[UIPopoverController alloc] initWithContentViewController:navigationController]; //必须是个ViewController/*且该ViewController的viewDidLoad方法中要设置其在popover中的尺寸,如 self.contentSizeForViewInPopover = CGSizeMake(300.0, 280.0);*/ self.recentSearchesPopoverC 阅读全文