- (UIViewController *)findViewController:(UIView *)sourceView { id target=sourceView; while (target) { target = ((UIResponder *)target).nextResponder; if ([target isKindOfClass:[UIViewController class]]) { break; } } return target; }…
iOS Programming View Controllers  视图控制器  1.1  A view controller is an instance of a subclass of UIViewController. 一个view controller 是一个UIViewController的子类. A view controller manages a view hierarchy. 一个view controller 管理一个视图树. It is responsible for c…
iOS 设置View投影 需要设置 颜色 阴影半径 等元素 UIView *shadowView = [[UIView alloc] init]; shadowView.frame = CGRectMake(, , , ); shadowView.center = self.view.center; shadowView.backgroundColor = [UIColor whiteColor]; //设置阴影颜色 shadowView.layer.shadowColor = [UIColor…
iOS圆角view的Swift实现(利用Core Graphics绘制) 因为app的列表用用到了圆形图片的头像,所以去探究并思考了一下这个问题.首先这个问题有两个方向的解决方案: 把图片弄成圆形的. 把ImageView弄成圆形的. 这两个解决方案如果只在前端解决的话,我比较推荐第二种方案类型的.因为在列表中,修改的ImageView是可以参与Cell的重用的.但是第一种方案也有特殊的,因为图片存储如果用的阿里云.七牛等的成熟的图片存储,传个参数就可以返回圆角的图片,非常方便. 第二种方案的解…
iOS Programming  View and View Hierarchy 视图和视图等级 1.1(1)File → New → Project.. From the iOS section, select Application, choose the Empty Application template, and click Next. 1.2 View Basics  (1)A view is an instance of UIView or one of its subclasse…
建议写成UIView的分类,如下: .h - (UIViewController *)viewController; .m - (UIViewController *)viewController { UIResponder *responder = self.nextResponder; while (![responder isKindOfClass:[UIViewController class]] && responder != nil) { responder = respond…
一.UIViewController 做iOS开发的经常会和UIViewController打交道,从类名可知UIViewController属于MVC模型中的C(Controller),说的更具体点它是一个视图控制器,管理着一个视图(view). UIViewController的view是lazy loading的,当你访问其view属性的时候,view会从xib文件载入或者通过代码创建(覆盖loadView方法,自定义其view hierarchy),并返回,如果要判断一个View Con…
对于不同的viewcontroller之间数据的共享和处理 采用代理的方式,子viewcontroller设计代理协议,并定义协议接口,父viewcontroller实现协议接口,实现子视图控制器退出时将相关数据更新到父视图中 采用ios的消息机制,父viewcontroller注册消息,子viewcontroller发送消息,触发父viewcontroller的消息处理 采用database作为数据中间的存储媒介,子viewcontroller将状态数据存入DB,父viewcontrller从…
创建: 2018/04/26 完成: 2018/05/03 更新: 2018/05/04 增加UIStackView 更新: 2018/09/18 补充SFSafariViewController需要SafariServeces 视图管理器    一个画面一个视图管理器, 管理View     画面迁移  segue的transition  default  Cover Vertical  Cover Vertical  从下往上覆盖  Flip Horizontal  水平翻转  Cross…
学习了一下ios,把一个基本的概念搞清楚了,在android或者wp中,大家基本都是习惯与一个画面场景代表一个类,新建场景的时候自动新建了类,但在ios中使用了storyboard之后发现,在storyboard中新加入了一个新的viewcontroller之后,就不知道在哪里写代码来控制这个viewcontroller,因为默认初始化创建这个app的时候自动带了一个viewcontroller. 对于我来说这个一开始就没搞清楚,就像下面这个图,建立了一个新的viewcontroller直接在s…
android上的view的类叫View, 以下是它的class overview, This class represents the basic building block for user interface components. A View occupies a rectangular area on the screen and is responsible for drawing and event handling. View is the base class for wi…
新建一个view-based模板工程,在ViewController文件中添加下面的代码,即可实现翻转效果: - (void)viewDidLoad { [super viewDidLoad]; //需要翻转的视图 UIView *parentView = [[UIView alloc] initWithFrame:CGRectMake(0, 150, 320, 200)]; parentView.backgroundColor = [UIColor yellowColor]; parentVi…
Hidden.Alpha.Opaque的区别 在iOS中,每个View都有Hidden.Alpha.Opaque三个关于透明的属性,官方文档介绍如下: 1. @property(nonatomic) CGFloat alpha; This value affects only the current view and does not affect any of its embedded subviews.Changes to this property can be animated. 2.…
首先引入文件: libsqlite3. FMDB(包含Global.m,Global.h文件) 关闭arc 用mesaSqlite创建一个数据库,引入文件中 其次: 首先,在Global.h文件中找到#define kDBName @"shuJu.db",如果你建立的数据库文件名为:liyongxing.db,那就将shuJu.db更改为liyongxing.db,然后再delegate里的self.window下添加一行代码copyMainBundleResourceToCacheD…
原文链接:http://blog.csdn.net/longshihua/article/details/51282388 presentViewController是经常会用到的展现ViewController的方式,而显示和去除presentViewController也是很简单的,主要是下面两个方法: - (void)presentViewController:(UIViewController *)viewControllerToPresent animated: (BOOL)flag…
上篇博客写了ViewController的基类的实现,这篇博客主要写在BaseViewController的基础上实现一个含tableView控件的基类的实现,主要给包含tableView的页面来继承. BaseTableViewViewController.h代码: #import "BZBaseViewController.h" #import "BZBaseTableViewCell.h" @interface BZBaseTableViewViewContr…
从VC取得View很容易,但有些情况下我们需要从View反向获取VC. 不过在一些特殊的场合,Cocoa库帮我们想的很周到,比如在自定义View过渡动画的时候: func animateTransition(transitionContext: UIViewControllerContextTransitioning) { } 系统在回调我们的animateTransition方法时,会传入一个context参数,从它我们可以轻松取得参与动画的toView,fromView以及它们对应的VC:…
ios应用中控制器view的创建方式有三种:storyboard.xib和代码,当APP启动后View的具体加载过程如图(苹果官方): 假设我使用的是WYSViewController控制器 应用启动时会加载控制器的loadView, 1.如果loadView中有代码,直接用loadView中的代码来创建View 2.如果loadView中没有代码, A.当你使用了storyboard时,程序加载storyboard来创建View, B.当你使用了xib时,程序就加载xib来创建View, a.…
时间 2014-07-27 16:08:00  博客园-所有随笔区 原文  http://www.cnblogs.com/zoe-j/p/3871501.html 主题 StoryBoard 学习了一下ios,把一个基本的概念搞清楚了,在android或者wp中,大家基本都是习惯与一个画面场景代表一个类,新建场景的时候自动新建了类,但在ios中使用了storyboard之后发现,在storyboard中新加入了一个新的viewcontroller之后,就不知道在哪里写代码来控制这个viewcon…
近期项目中,使用Storyboard.AutoLayout开发,某个ViewController中嵌套了多个子ViewController,结果在将其加入到父ViewController时,出现坐标异常问题.追踪代码发现,这是因为AutoLayout状态下,获取Frame数据不准确(或时机不正确)导致的,网上找了许久,取长补短,搞到了解决的方法,详细例如以下: 分析: AutoLayout状态下.运行完viewDidLoad.viewWillAppear等方法后,还会运行viewDidLayou…
IOS - xib(Interface Builder,view) - can't change view size(view不能改变大小问题) 今天在试着swift语言写个demo,,当中遇到了这个问题,分享一下 当我们自己定义tableview.collectionview的cell,也有时候我们要自己定义窗体xib,但创建xib后,其height.width不可改动. 这时问题就来了.怎么才干使我们的自己定义xib宽高可改动: 项目中创建xib,单独的view时, 方法: 默认Simula…
笔者的app要实现定位所在省和城市名称,借此总结巩固一下! @interface VenueListVC : BasePageTableViewVC<BMKLocationServiceDelegate,BMKGeoCodeSearchDelegate> { BMKLocationService *_locService; BMKGeoCodeSearch *_geoSearch; float _curLatitude, _curLongitude; NSString *_curCityNam…
生命周期 说到view的生命周期一般都是指视图控制器的view生命周期. view的创建:loadView 视图控制器(UIViewController)及其子类,无论是手写代码还是storyboard.xib肯定会调用loadView方法.其它的视图不会调用比如UIButton,UILabel等,因为他们不是视图控制器.下面是视图控制器被创建时会被调用的其它方法: Storyboard/XIB会调用的方法: initWithCoder awakeFromNib:此时frame还没有完成. 手写…
   白色view上面有两个子View,红色view和橙色view.白色view的宽度等于橙色view和红色view宽度较大的一个,并且橙色view和红色view垂直居中, Masonry布局如下: [self.btnImageView mas_makeConstraints:^(MASConstraintMaker *make) { make.top.equalTo(baseView); make.width.equalTo(@(buttonConfig.indexPic.width)); m…
在最近的程序中用到了Android中的View的滚动,记录一下,待总结.…
最近学习了一下ios7比较重要的一项功能,就是 controller 的 custom transition. 在ios7中,navigation controller 中就使用了交互式过渡来返回上级界面,可以通过设置interactivePopGestureRecognizer.enabled 来关闭这个效果. 请参阅 ,写的非常好,建议2篇文章都要读读 http://onevcat.com/2013/10/vc-transition-in-ios7/ http://www.teehanlax…
https://developer.apple.com/library/ios/documentation/UserExperience/Conceptual/AutolayoutPG/ImplementingView/ImplementingView.html 实现UIView的 - (CGSize)intrinsicContentSize { } 方法,然后使用 [self invalidateIntrinsicContentSize]; 通知窗体大小发生变化…
问题描述:项目工程只支持竖屏,在播放器页面需要点击按钮进行横竖屏切换,并能根据手机的方向进行自动旋转 如图:只勾选了竖屏 解决方法:(主要是采用视图transform的原理 横屏时调整视频视图上的每个控件坐标位置 竖屏在调整回去) 1.电池状态栏的显示与隐藏 首先在plist文件中添加View controller-based status bar appearance 设置为no 然后在控制器中通过[[UIApplication sharedApplication] setStatusBarH…
//比如创建一个UIImageView到view上 UIImageView *imageView = [[UIImageView allc] init]; imageView.tag = 10001; //需要设置一个tag [self.view addSubView:imageView]; //在别处使用的时候可以通过tag得到imageView对象 UIImageView *imageView = (UIImageView *)[self viewWithTag:10001];…
1.view里实现控制器的modal 拿到主窗口的根控制器,用根控制器进行modal需要的modal的控制器 场景:点击自定义view里的按钮实现控制器的modal UIViewController *root = [UIApplication sharedApplication].keyWindow.rootViewController; [root presentViewController:<#(nonnull UIViewController *)#> animated:YES com…