ios碎片小记

一、UIImageView

1.图片形状设为圆形时可能会由于图片的宽高比例导致显示出来的效果不是圆形

解决:设置UIImageView的contentMode为UIViewContentModeScaleAspectFill

ContentMode属性

typedef NS_ENUM(NSInteger, UIViewContentMode) {
    UIViewContentModeScaleToFill,
    UIViewContentModeScaleAspectFit,      // contents scaled to fit with fixed aspect. remainder is transparent
    UIViewContentModeScaleAspectFill,     // contents scaled to fill with fixed aspect. some portion of content may be clipped.
    UIViewContentModeRedraw,              // redraw on bounds change (calls -setNeedsDisplay)
    UIViewContentModeCenter,              // contents remain same size. positioned adjusted.
    UIViewContentModeTop,
    UIViewContentModeBottom,
    UIViewContentModeLeft,
    UIViewContentModeRight,
    UIViewContentModeTopLeft,
    UIViewContentModeTopRight,
    UIViewContentModeBottomLeft,
    UIViewContentModeBottomRight,
};

UIViewContentModeScaleToFill 缩放以填充

UIViewContentModeScaleAspectFit 缩放以显示全部,比例不变

UIViewContentModeScaleAspectFill 缩放显示,填满,比例不变

时间: 2024-10-10 05:31:54

ios碎片小记的相关文章

IOS开发小记

1. 在view之间添加分割线的注意 第一种情况没有什么特别的,view之前是独立的,没有位置重合的情况. 第二中有重合区域,这里要注意的是,在iPad下如果分割线的宽度设置小于1,会出现显示在view进去视图的时,闪现一下,然后不可见. IOS开发小记,布布扣,bubuko.com

iOS 开发小记 (十)

2016年02月22日 - 元宵节 今日面试,有三个题目让我不太确定: 1,oc的协议和java的接口有何不同? oc的@protocol 有 @required 和 @optional. 2,UIView 和 CALayer有何区别? a.UIView可以响应事件,CALayer不行: b.UIView是对显示内容的管理,CALayer是对显示内容的绘制: c.每个UIView内都有一个CALayer提供内容的绘制和显示,view.frame简单的返回了view.layer.frame. ht

iOS 开发小记 (八)

过完年,整理下最近遇到的问题. 1,通过runtime动态添加Ivar 优点:动态添加Ivar我们能够通过遍历Ivar得到我们所添加的属性. 缺点:不能在已存在的class中添加Ivar,必须通过objc_allocateClassPair动态创建一个class,才能调用class_addIvar创建Ivar,最后通过objc_registerClassPair注册class. 参考 如何添加 http://blog.csdn.net/majiakun1/article/details/3851

ios 开发小记 (三)

platform :ios, '7.0' pod "AFNetworking", "~> 2.0" pods 文件原来是这样. 在用了xctest之后,就报错了:AFNetworking Cause Error while using XCTest in Xcode5. 要在中间加一句: link_with 'Supermark', 'SupermarkTests' -objc 的意思: 之所以使用该标志,和Objective-C的一个重要特性:类别(cate

iOS 开发小记 (九)

1,GCD的Concurrent.Serial queues Concurrent queues (also known as a type of global dispatch queue) execute one or more tasks concurrently, but tasks are still started in the order in which they were added to the queue. The currently executing tasks run

iOS开发小记(十三)

1.软编码和硬编码如何区分 软编码:使用CPU进行编码 硬编码:使用非CPU进行编码,如显卡GPU.专用的DSP.FPGA.ASIC芯片等 2.连续的动画 NSOperationQueue 串行UIview和CAlayer 的动画 3.UIImageView UIImageView setAnimationImages 和 startAnimating 搭配使用 4.类加载函数 +(void)initialize Thus the method may never be invoked if t

iOS 开发小记 (七)

最近要换地方工作了,整理下之前遇到的问题. 1.StatusBar View controller-based status bar appearance 状态栏属性设置后,plist修改后才有效. 2.Auto Layout Hugging priority 确定view有多大的优先级阻止自己变大. Compression Resistance priority确定有多大的优先级阻止自己变小. 简单来说,Hugging的收缩的意思,就是当有A,B两个元素连在一起,当他们的superView变大

ios 开发小记 (二)

identity inspector 的key path 可以用来做圆角按钮和边框. layer.cornerRadius number  圆角按钮 使用代理模式的时候,要注意,A 和 B的引用之间会循环引用,导致内存无法回收. 可以使引用设置为weak. navigationBar 默认是透明的,颜色会进行高斯模糊处理.所以直接用RGB颜色赋值,最后的颜色效果会稍微淡一些. 解决方案:最开始的navigationBar设置为opaque. ios3.0 以后 苹果的sdk对这种情况做了调整,如

iOS CGContex小记

0 CGContextRef context = UIGraphicsGetCurrentContext(); 设置上下文 1 CGContextMoveToPoint 开始画线 2 CGContextAddLineToPoint 画直线 4 CGContextAddEllipseInRect 画一椭圆 4 CGContextSetLineCap 设置线条终点形状 4 CGContextSetLineDash 画虚线 4 CGContextAddRect 画一方框 4 CGContextStro