摘要:
Apple官方的文档为生成一个UIImage对象提供了两种方法加载图片: 1. imageNamed,其参数为图片的名字; 2. imageWithContentsOfFile,其参数也是图片文件的路径。 那么两种有什么区别吗? 肯定是有的。根据Apple的官方文档: imageNamed: 这个方 阅读全文
摘要:
简而言之 图片的东西都大了一号 LaunchImage问题 阅读全文
摘要:
//价格富文本 NSString *string = [NSString stringWithFormat:@"¥1805646.31"]; NSMutableAttributedString *str = [[NSMutableAttributedString alloc] initWithStr 阅读全文
摘要:
一、使用UIView类实现动画 基本写法,代码必须放在Begin和Commit之间: 简单例子: 同时运行多个动画效果: 以上代码实现的动画效果为( 同时执行 ): 1、图像向下平移150像像 2、设置图像透明度为0。 指定上下文: UIGraphicsGetCurrentContext():获取当 阅读全文
摘要:
//左侧翻页动画 -(void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath{ CATransform3D r 阅读全文
摘要:
1.截取字符串 NSString*string =@"sdfsfsfsAdfsdf"; string = [string substringToIndex:7];//截取下标7之前的字符串 NSLog(@"截取的值为:%@",string); [string substringFromIndex:2 阅读全文
摘要:
IOS学习之UITableView滚动到指定位置 方法很简单: - (void)scrollToRowAtIndexPath:(NSIndexPath *)indexPath atScrollPosition:(UITableViewScrollPosition)scrollPosition ani 阅读全文
摘要:
阅读全文
摘要:
App 上传流程 首先要有开发者账号 3.点击certificates Identifiers进下图 4.点击Certificates进下图,首先创建App IDs 5.其次创建相应的证书 Development是开发环境下的证书, Production是生产环境下的证书(往appStore上传), 阅读全文
摘要:
1.改build setting中 code siging 中release 改成发布证书( Distribution ) project 和 targets 都要修改 2.info.plist 文件中的 Bundle identifier 改成和 ituns connect 中的套装ID 一样,如 阅读全文