• 博客园Logo
  • 首页
  • 新闻
  • 博问
  • 专区
  • 闪存
  • 班级
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 简洁模式 ... 退出登录
    注册 登录

Angel----部落阁
Xcode10
博客园    首页    新随笔    联系   管理    订阅  订阅
上一页 1 2 3 4 5 6 ··· 11 下一页
2016年10月10日
iOS开发之窥探UICollectionViewController(一) -- Ready Your CollectionViewController
摘要: 之前用CollectionViewController只是皮毛,一些iOS从入门到精通的书上也是泛泛而谈。这几天好好的搞了搞苹果的开发文档上CollectionViewController的内容,亲身体验了一下CollectionViewController的强大,之前一直认为CollectionV 阅读全文
posted @ 2016-10-10 17:21 angelfeather 阅读(166) 评论(0) 推荐(0) 编辑
iOS开发之窥探UICollectionViewController(二) --详解CollectionView各种回调
摘要: UICollectionView的布局是可以自己定义的,在这篇博客中先在上篇博客的基础上进行扩充,我们先使用UICollectionViewFlowLayout,然后好好的介绍一下UICollectionView的一些回调方法,主要包括UICollectionViewDataSource,UICol 阅读全文
posted @ 2016-10-10 17:21 angelfeather 阅读(553) 评论(0) 推荐(0) 编辑
Corelocation及地图控件学习笔记
摘要: Corelocation基本使用 在地图章节的学习中,首先要学的便是用户位置定位,因此我们首先要掌握Corelocation的使用。(在IOS8以前可以系统会直接请求授权,现在需要我们自己调用方式通知系统请求授权) 首先设置一个Corelocation属性并实现懒加载设置代理,此对象需要自己调用方法 阅读全文
posted @ 2016-10-10 17:19 angelfeather 阅读(181) 评论(0) 推荐(0) 编辑
iOS9 collectionView新特性
摘要: 近日因为系统升级导致xcode6.系列版本出现bug,于是开始使用xcode7。在使用之余突然想到collectionView在iOS9中发布了一个可以移动cell的新特性,就尝试着将其实现,无奈api文档接口无法查看,只有一些列的api放在那里。于是上网查找,发现国内没有搜索到此类文章,于是FQ继 阅读全文
posted @ 2016-10-10 17:18 angelfeather 阅读(139) 评论(0) 推荐(0) 编辑
collectionView布局原理及瀑布流布局方式
摘要: 一直以来都想研究瀑布流的具体实现方法(起因是因为一则男女程序员应聘的笑话,做程序的朋友应该都知道)。最近学习到了瀑布流的实现方法,瀑布流的实现方式有多种,这里应用collectionView来重写其UICollectionViewLayout进行布局是最为简单方便的。但再用其布局之前必须了解其布局原 阅读全文
posted @ 2016-10-10 17:17 angelfeather 阅读(2492) 评论(0) 推荐(0) 编辑
使用UIImageView展现来自网络的图片
摘要: UIImageView:可以通过UIImage加载图片赋给UIImageView,加载后你可以指定显示的位置和大小。 1、初始化 UIImageView *imageView = [[UIImageView alloc] initWithFrame:CGRectMake(0.0,45.0,300,3 阅读全文
posted @ 2016-10-10 17:16 angelfeather 阅读(86) 评论(0) 推荐(0) 编辑
使用UIImageView实现图像拖动、缩放等
摘要: 1. 在xcode中新建一个基于view的工程,命名为PicViewer 2.修改PicViewerViewController.h: #import <UIKit/UIKit.h> @interface PicViewerViewController : UIViewController<UIGe 阅读全文
posted @ 2016-10-10 17:14 angelfeather 阅读(741) 评论(0) 推荐(0) 编辑
图象加载
摘要: 保存当前view到相册 保存当前view到相册 UIGraphicsBeginImageContext(currentView.bounds.size); //currentView 当前的view [currentView.layer renderInContext:UIGraphicsGetCu 阅读全文
posted @ 2016-10-10 17:13 angelfeather 阅读(67) 评论(0) 推荐(0) 编辑
iphone 利用UIImageView来制作幻灯片
摘要: 在 iPhone 应用里加入全屏动画可以让应用更具趣味性,以下这段代码可以实现这一功能 AnimationDemoViewController.m- (void)viewDidLoad {[super viewDidLoad];//指定ImageView的展示区域UIImageView *fishA 阅读全文
posted @ 2016-10-10 17:13 angelfeather 阅读(122) 评论(0) 推荐(0) 编辑
保存图片进沙盒
摘要: - (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary *)info{ UIImage *baseImage = [info objectF 阅读全文
posted @ 2016-10-10 17:12 angelfeather 阅读(243) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 11 下一页
Copyright © 2022 angelfeather
Powered by .NET 6 on Kubernetes