上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 17 下一页
摘要: http://cocoa.venj.me/blog/simulate-low-speed-network-connection-for-ios-apps/ 阅读全文
posted @ 2012-07-04 18:26 高笑228 阅读(242) 评论(0) 推荐(0) 编辑
摘要: http://cocoa.venj.me/blog/custom-fonts-in-ios-apps/好久没有更新这里了,今天开始慢慢恢复更新。好了,废话不多说,开始讲正题。今天的话题其实也很简单,那就是在iOS中使用自定义字体。虽然iOS自带的字体通常已经足够我们使用了,但是,对于某些特殊程序来说,比如,电子书程序,可能需要用到一些特殊的字体,或者需要用更好看的字 体来达到我们想要的显示效果。不过,iOS是不支持系统级安装新字体的。不过在iOS 3.x中,我们已经可以用一个很简单的方法来使用自定义字体了。我们来创建一个简单的iOS项目来做演示。在界面上拖入一个UITextView,在代码中创 阅读全文
posted @ 2012-07-04 18:24 高笑228 阅读(2465) 评论(0) 推荐(0) 编辑
摘要: http://blog.csdn.net/wanglang3081/article/details/7468480 阅读全文
posted @ 2012-07-03 17:45 高笑228 阅读(234) 评论(0) 推荐(0) 编辑
摘要: str = [strstringByReplacingOccurrencesOfString:@"\n"withString:@""];str = [strstringByReplacingOccurrencesOfString:@"\r"withString:@""]; 阅读全文
posted @ 2012-06-19 17:55 高笑228 阅读(208) 评论(0) 推荐(0) 编辑
摘要: 你可曾遇到过viewWillAppear没有被调用到的情况产生原因是用了UINavigationController.将UINavigationController的view作为subview添加到了其他viewController的view中。或者把UINavigationController添加到UITabbarController中了。此时,NavigationController的stack里面的viewController就收不到-(void)viewWillAppear:(BOOL)animated;等4个方法的调用。 原因呢 Apple Docs state:Warning: I 阅读全文
posted @ 2012-06-18 14:10 高笑228 阅读(1456) 评论(0) 推荐(0) 编辑
摘要: 在头文件中引入framework加入#import <MessageUI/MessageUI.h> 到InAppEmailViewController.h显示 MFMailComposeViewController UIMFMailComposeViewController与其他view controller一样; 我们可以在InAppEmailViewController 使用presentModalViewController使其滑入屏幕。替换InAppEmailController.m中的buttonPressed方法:1234567- (IBAction)buttonPre 阅读全文
posted @ 2012-06-18 12:09 高笑228 阅读(198) 评论(0) 推荐(0) 编辑
摘要: - (void)onClick:(id)sender{ UIButton *helpImageBtn = (UIButton *)sender; [UIView animateWithDuration:1.25f animati*****:^{ // fade out helpImageBtn.alpha = 0.0f; } completion:^(BOOL fini... 阅读全文
posted @ 2012-06-18 11:47 高笑228 阅读(192) 评论(0) 推荐(0) 编辑
摘要: NSBundle *bundle = [NSBundle mainBundle]; NSURL *plistURL = [bundle URLForResource:@"provinceCities" withExtension:@"plist"]; NSLog(@"%@", plistURL); self.dictionary = [NSDictionary dictionaryWithContentsOfURL:plistURL]; NSArray *components = [dictionary allKeys]; NSArr 阅读全文
posted @ 2012-06-14 00:43 高笑228 阅读(182) 评论(0) 推荐(0) 编辑
摘要: -(void)scrollViewDidEndDragging:(UIScrollView *)scrollView willDecelerate:(BOOL)decelerate{ if (scrollView.contentOffset.y < -80) { [UIView beginAnimations:nil context:nil]; [UIView setAnimationDuration:0.3]; [scrollView setContentInset:UIEdgeInsetsMake(80, 0, 0, 0)];// [scrollView setContentInse 阅读全文
posted @ 2012-06-13 23:31 高笑228 阅读(1417) 评论(0) 推荐(0) 编辑
摘要: 在Iphone上有两种读取图片数据的简单方法: UIImageJPEGRepresentation和UIImagePNGRepresentation. UIImageJPEGRepresentation函数需要两个参数:图片的引用和压缩系数.而UIImagePNGRepresentation只需要图片引用作为参数.通过在实际使用过程中,比较发现: UIImagePNGRepresentation(UIImage* image) 要比UIImageJPEGRepresentation(UIImage* image, 1.0) 返回的图片数据量大很多.譬如,同样是读取摄像头拍摄的同样景色的照片, 阅读全文
posted @ 2012-06-05 15:56 高笑228 阅读(292) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 17 下一页