摘要:<key>NSAppTransportSecurity</key> <dict> <key>NSAllowsArbitraryLoads</key> <true/> </dict>
阅读全文
摘要:- (UIImage *)stretchableImageWithLeftCapWidth:(NSInteger)leftCapWidth topCapHeight: (NSInteger)topCapHeight 这个函数是UIImage的一个实例函数,它的功能是创建一个内容可拉伸,而边角不拉伸的
阅读全文
摘要:因为在加载视图的时候根据xib的大小修改了contentsize 所以要在以下方法设置,即在视图已经出现的时候再设置一次 -(void)viewDidAppear:(BOOL)animated { [super viewDidAppear:animated]; contentScroll.conte
阅读全文
摘要:[timer setFireDate:[NSDate distantPast]]; 这是开始(距离过去) [timer setFireDate:[NSDate distantFuture]]; -- 这是结束
阅读全文
摘要:SetViewController * vc = [[SetViewController alloc] init]; navigation = [[UINavigationController alloc] initWithRootViewController:vc]; // [self.navig
阅读全文
摘要:2、Modal Presentation Styles(弹出风格) 通过设置presenting VC的modalPresentationStyle属性,我们可以设置弹出View Controller时的风格,有以下四种风格,其定义如下: 复制代码代码如下: typedef enum { UIMod
阅读全文