E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
cgrect
iOS UITableView Header 不悬停的tip
contentInset向上偏移去阻断系统悬停的计算位置,我们可以设置tableHeaderView的高度与sectionHeaderHeight高度一致letheaderView=UIView(frame:
CGRect
小峰书
·
2020-03-28 10:32
UIView和CALayer的关系
@implementationCustomView-(instancetype)initWithFrame:(
CGRect
)frame{self=[superinitWithFrame:frame];if
527267线的iOS工程师
·
2020-03-28 10:58
iOS坐标转换注意
nullableUIView*)view;//点转换-(CGPoint)convertPoint:(CGPoint)pointfromView:(nullableUIView*)view;//点转换-(
CGRect
芝麻酱的简书
·
2020-03-28 03:35
Swift-UIView扩展常用属性
extensionUIView{funcsetX(_x:CGFloat){letframe:
CGRect
=self.frameframe.origin.x=xself.frame=frame}funcx
我在鄱阳湖边
·
2020-03-27 13:40
自定义控件初始化代码中的坑
@interfaceYDTestView:UIView-(id)initWithFrame:(
CGRect
)frame;@end@implemen
秦砖
·
2020-03-27 13:56
Swift - UIView + Extension
extension来宽展属性直接上代码,很容易明白extensionUIView{varx:CGFloat{get{returnself.frame.origin.x}set(newVal){vartemF:
CGRect
Soullamet
·
2020-03-27 13:07
iOS开发笔记之MYWebViewController_基于WKWebView封装
WKWebViewConfiguration()config.userContentController=WKUserContentController()letview=WKWebView(frame:
CGRect
.zero
iOS_朱益锋
·
2020-03-27 11:11
【iOS】添加圆角的方法、添加阴影
viewObj.layer.cornerRadius=5.0;viewObj.layer.masksToBounds=YES;添加圆角(二)在该对象的drawRect方法中中加上-(void)drawRect:(
CGRect
CoderHuangRui
·
2020-03-27 10:14
CGPath CGContext UIBezierPath的比较
//#import"PathView.h"@implementationPathView-(instancetype)initWithFrame:(
CGRect
)frame{if(self=[superin
路灯下的黑猫H
·
2020-03-27 07:25
空白提示第三方开源库—— DZNEmptyDataSet
EmptyDataSet.h"3.继承代理DZNEmptyDataSetDelegate,DZNEmptyDataSetSource4.BaseTableView.m-(instancetype)initWithFrame:(
CGRect
GalaxyJM
·
2020-03-27 06:13
如何在Swift里用UnsafeMutablePointer
用到了UIPopoverPresentationController,然后在转屏的时候需要调用UIPopoverPresentationControllerDelegate来返回一个适配后的view和
CGRect
高浩浩浩浩浩浩
·
2020-03-27 06:40
重新设定BUtton图片尺寸 和文字
@interfaceBottomButton:UIButton-(
CGRect
)imageRectForContentRect:(
CGRect
)contentRect;-(
CGRect
)titleRectForContentRect
指尖的跳动
·
2020-03-27 01:03
8.21 Draw 绘图 走线与柱状图2
//Anemptyimplementationadverselyaffectsperformanceduringanimation.overridefuncdrawRect(rect:
CGRect
){EX
jayck
·
2020-03-27 00:00
【iOS开发】iOS 中根据文字计算高度
[contentsizeWithAttributes:@{NSFontAttributeName:[UIFontsystemFontOfSize:14]}];二、多行文本一般通过NSString的-(
CGRect
xiacheng
·
2020-03-26 23:39
iOS TableViewCell自定义上下分割线
PS:线的长度可以自己去控制//在自定义的UITableViewCell里重写drawRect:方法#pragmamark-绘制Cell分割线-(void)drawRect:(
CGRect
)rect{CGContextRefcontext
我爱月光下的承诺
·
2020-03-26 22:34
UIButton
修改UIButton中文字和图片的位置重写下面两个方法(这里以把图片放到右边为例)//重写UIButton的titleRectForContentRect-(
CGRect
)titleRectForContentRect
FallPine
·
2020-03-26 20:18
OC打印结构体时转换成对象打印
OC直接打印结构体,点(
CGRect
,CGSize,CGPoint,UIOffset)等数据类型,我们完全可以把其转换为OC对象来进项打印调试,而不必对结构体中的成员变量进行打印.例如可以使用NSStringFromCGRect
言己言
·
2020-03-26 13:44
swift UIImage显示渲染优化
我们先来看一段简单的代码:letimageView:UIImageView=UIImageView(frame:
CGRect
(x:0,y:0,width:200,height:200))self.view.addSubview
见哥哥长高了
·
2020-03-26 08:10
【iOS】如何设置UITableViewCell的宽度
答案就在下面:自定义一个cell,在实现文件下面重写父类的方法就行了-(void)setFrame:(
CGRect
)frame{frame.origin.x+=kCell_margin;frame.size.width
idbeny
·
2020-03-26 05:51
Swift3.0中$0的使用
classViewController:UIViewController{letmyView:UIView={$0.backgroundColor=UIColor.red$0.frame=
CGRect
(
JunShine
·
2020-03-26 02:02
iOS开发小笔记 | 封装一个带角标的button
代码:#pragmamark-构造方法-(instancetype)initWithFrame:(
CGRect
)frame{if(self=[superinitWithFrame:frame]){[selfcustomInitialize
无夜之星辰
·
2020-03-26 01:57
水柱动画
#import@interfaceSDmoreCicle:UIView//水柱的实现+(instancetype)ViewWithCicle:(
CGRect
)rect;-(instancetype)initWithFrame
lichengjin
·
2020-03-25 22:29
swift微博第9天(自定义微博首页的菜单)
importUIKitclassPopoverPresentationController:UIPresentationController{//定义一个presentFrame来动态改变展示视图的framevarpresentFrame=
CGRect
.zero
IIronMan
·
2020-03-25 16:59
2018-05-03
nonatomic,strong)UIImageView*img;@property(nonatomic,strong)UILabel*la;-(instancetype)initWithFrame:(
CGRect
颜值低峰期
·
2020-03-25 12:55
THE SWIFT CODE之UITEXTFIELD的使用,及事件委托
比如常用的登录用户名和密码输入等等,那我们直接进入主题吧1.创建普通的UITextField//构建基本的UITextFieldvaruitf:UITextField=UITextField(frame:
CGRect
small_Sun
·
2020-03-25 09:36
第二周第二天 滑杆
滑杆自定义滑杆图片杆的图片手滑的图片letslider=UISlider(frame:
CGRect
(x:100,y:50,width:200,height:40))self.view.addSubview
112233香樟树
·
2020-03-25 08:30
iOS -
CGRect
在开发的时候,给控件和界面布局的一直使用CGRectMake,关于
CGRect
其他的方法比较少用,今天认真的去看了一下
CGRect
的其他方法,才发现还有很多方法对纯代码布局是很有用的。
码农_会写诗
·
2020-03-25 07:37
UIMenuController
/***xib创建label时调用*/-(void)awakeFromNib{[selfsetUp];}/***代码创建label时调用*/-(instancetype)initWithFrame:(
CGRect
张璠
·
2020-03-25 07:11
iOS UIView的frame、bounds和center
首先,frame和bounds都是
CGRect
类型,
CGRect
包含一个origin和一个size,origin是CGPoint类型,size是CGSize类型。那好。
iOS腾蛟起凤
·
2020-03-25 02:47
可拖动的button
;//MARK:-lifecycleoverrideinit(frame:
CGRect
){super.init(frame:frame);letrecognizer:UIPanGe
胜哥的二哥
·
2020-03-24 20:18
Swift3.0 创建UIButton,通知NSNotification
view.addSubview(btn);fileprivatelazyvarbtn:UIButton={letbtn=UIButton(type:.custom)//2.定义framebtn.frame=
CGRect
涛涛灬灬
·
2020-03-24 17:14
模仿扇贝英语每日一句——图片查看器
效果图:图片查看器主要通过重写了overridefunclayoutAttributesForElements(inrect:
CGRect
)->[UICollectionViewLayoutAttributes
Paxton_
·
2020-03-24 17:11
iOS UIScrollView双击定点放大、双指缩放
-(id)initWithFrame:(
CGRect
)frame{self=[superinitWithFrame:frame];if(self){[selfsetUpViews];}returnself
JavenZ
·
2020-03-24 16:50
UIBezierPath
-(void)drawRect:(
CGRect
)rect{NSLog(@"%s",__FUNCTION__);//当前函数,类型charconst*//1.贝塞尔曲线//创建一个BezierPath对象
PZcoder
·
2020-03-24 13:36
Swift中如何使用便利构造器
我们以继承UIView为例首先,重写init方法:重写init方法然后,创建便利构造器,注意使用convenience,其中,self.init()就是调用上面init(frame:
CGRect
)方法,
刘畅_
·
2020-03-24 13:49
iOS View的Frame和bounds深入探究
-(
CGRect
)frame{returnCGRectMake(self.frame.origin.x,self.frame.origin.y,self.frame.size.width,self.frame.size.height
upupSue
·
2020-03-24 11:28
iOS CAReplicatorLayer实现脉冲扩散动画效果 (Swift)
//定义图层overrideinit(frame:
CGRect
){super.init(frame:frame)l
Aze_
·
2020-03-24 05:11
iOS开发中addSubview的参数放在一个"({})"代码块中
"代码块中今天在微博中看到南峰子_老驴微博分享的一个小技巧在此记录分享下[self.viewaddSubview:({UIView*view=[[UIViewalloc]initWithFrame:(
CGRect
zero_zql
·
2020-03-23 19:40
view.transform属性实战
1.初始化方法self.view.transform=CGAffineTransformMake(1,1,1,1,10,10);CGAffineTransform是一个结构体,类似我们常见的
CGRect
SmallWhiteMouse
·
2020-03-23 16:59
手把手教你怎么使用boundingRectWithSize来实现cell的高度自适应
boundingRectWithSize去实现,提升效率,但在路上也是遇到了很多挫折,写这篇博客记录下心路历程参考文章boundingRectWithSize计算文字高度不准问题apple官方API介绍方法使用介绍-(
CGRect
太阳骑士索拉尔
·
2020-03-23 15:39
UIBezierPath贝塞尔曲线的常用方法总结
1、根据一个矩形画曲线+(UIBezierPath*)bezierPathWithRect:(
CGRect
)rect2、根据矩形框的内切圆画曲线+(UIBezierPath*)bezierPathWithOvalInRect
木马不在转
·
2020-03-23 12:32
iOS部分视图内容位置缩进解决方案
UITextField文字缩进等位置改变只需创建一个UITextField的子类,在子类中重写几个方法:-(
CGRect
)borderRectForBounds:(
CGRect
)bounds;//边界的位置
koce_zhao
·
2020-03-23 11:02
Autolayout学习笔记
知识点一:1、布局思维传统布局思路中,一个view在哪里有多大,那就写清楚它的坐标位置和宽高就定了,平时用
CGRect
和CGPoint这两种模型就足够了,而且它一定非常听你的话,写的是多少,它绝对就是多少
_浅墨_
·
2020-03-23 00:12
自定义视图圆角 corner radius
下面我将介绍给你新的方法首先我们会用到UIBezierPathpublicconvenienceinit(roundedRectrect:
CGRect
GeorgeCharles
·
2020-03-22 23:35
UILabelAndUIButton常用属性与用法☀️
显示的文本内容numberOfLines显示的最大函数,默认1行,如果设置0,行数没有上线backgroundColor背景颜色textColor文本颜色font字体样式及大小```######frame:
CGRect
LeaderBiao
·
2020-03-22 20:45
自定义UIPresentationController弹出页面上移的bug
-(
CGRect
)frameOfPresentedViewInContainerView{CGRectframe=[
koreadragon
·
2020-03-22 18:35
坐标点转换
pointtoView:(nullableUIView*)view;-(CGPoint)convertPoint:(CGPoint)pointfromView:(nullableUIView*)view;-(
CGRect
穿靴子的阿拉丁
·
2020-03-22 15:48
TableView.tableHeadView
tableView.tableHeadView自适应高度,本来是个很简单的事情,由于忘了一个点,瞎忙好久,[Cry]1,创建TableViewlettableView=UITableView(frame:
CGRect
Silicn
·
2020-03-22 15:17
tableView上的cell之间有间距
在tableView是plain的状态下,重写该方法,可以实现cell之间,有间距,如图效果Snip20160719_8.png//代码入下-(void)setFrame:(
CGRect
)frame{frame.size.height
伊蕊飘零
·
2020-03-22 13:51
一个星星评分的简单实现
interfaceNAStarView:UIView@property(nonatomic,copy)changeStarselectedSatrNum;+(instancetype)starViewWithFrame:(
CGRect
DDY
·
2020-03-22 11:29
上一页
19
20
21
22
23
24
25
26
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他