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
CGRectMake
38.layer上的图片裁剪 矩阵操作
Drawingcode//画圆,以便于以后指定可以显示内容范围CGContextRefctx=UIGraphicsGetCurrentContext();CGContextAddEllipseInRect(ctx,
CGRectMake
n71820
·
2020-09-12 14:39
layer图片裁剪
矩阵操作
layer图片裁剪
矩阵操作
iOS实现UILabel换行
下面通过一个例子进行具体实现:CGFloatUIScreenmainScreen]bounds].size.width;self.textLabel.frame=
CGRectMake
(105,20,view_width
被动
·
2020-09-12 08:26
iOS开发
iOS
UILabel
换行
iOS UIimageView 实现动态图播放
//创建UIImageView,添加到界面UIImageView*imageView=[[UIImageViewalloc]initWithFrame:
CGRectMake
(20,20,100,100)
Calm_??
·
2020-09-12 07:38
iOS移动开发
UITableViewStyleGrouped类型下去掉头部空白
UIView*view=[[UIViewalloc]initWithFrame:
CGRectMake
(0,0,kScreen_Width,10)];tableView.tableHeaderView=view
seven2holm
·
2020-09-12 07:27
iOS
iOS 二维码的制作(libqrencode)
h中导入#import"QRCodeGenerator.h")imageView=[[UIImageViewalloc]initWithFrame:
CGRectMake
(0,0,150,150)];
刘亭均
·
2020-09-12 06:33
iOS开发小技巧
CALayer图层
背景定义等操作1、定义图层属性CALayer*layer=[CALayerlayer];layer.backgroundColor=[UIColorblueColor].CGColor;layer.bounds=
CGRectMake
low-profile
·
2020-09-12 01:33
IOS-UI
改变image的尺寸大小,按原比例不拉伸。
(UIImage)scaleToSize:(UIImage)imgsize:(CGSize)size{UIGraphicsBeginImageContext(size);[imgdrawInRect:
CGRectMake
C_H_J_
·
2020-09-11 21:06
代码片段
使用image drawInRect: 方法改变图片大小后,图片画质变差了--(头像修改时)
scaleFromImage:(UIImage*)imagetoSize:(CGSize)size{UIGraphicsBeginImageContext(size);[imagedrawInRect:
CGRectMake
CoderKo1o
·
2020-09-11 21:55
ios开发
个人学习笔记
关于UILabel的多行显示 UILabel numberOfLines
早上做了会实验结果如下:1.N行完全自适应:UILabel*testLabel=[[UILabelalloc]initWithFrame:
CGRectMake
(10,30,100,21)];NSString
shark0001
·
2020-09-11 16:45
UILabel
numberOfLines
iOS 点击按钮实现复制
1、新建一个UIButtonUIButton*btn=[[UIButtonalloc]initWithFrame:
CGRectMake
(0,0,40,40)];[btnsetTitle:@"clickme"forState
lf_lara
·
2020-09-11 15:57
iOS
iOS
iOS基础笔记
的位置和大小(0,0)屏幕的最左上角的点X:正轴方向->向右Y:正轴方向->向下UIView*view=[[UIViewalloc]init];//设置位置和大小//1、frame方式view.frame=
CGRectMake
github_34702824
·
2020-09-11 12:35
初级
iOS切换RootViewController,Window上的UIView隐藏的问题
应用启动时在当前的Window上添加了一个视图UIView*alertView=[[UIViewalloc]init];alertView.bounds=
CGRectMake
(
oldmonster
·
2020-09-11 10:19
UIToolbar使用详解
第一、创建ToolBarUIToolbar*toolBar=[[[UIToolbaralloc]initWithFrame:
CGRectMake
(0,460-44-44,320,44)]autorelease
richard_飞飞
·
2020-09-11 06:04
UIKit
自定义UITabBarController的tabBar背景图片
self){//方法一UIImageView*img=[[UIImageViewalloc]initWithImage:[UIImageimageNamed:@"bg.png"]];img.frame=
CGRectMake
wsq198760
·
2020-09-11 06:17
iphone
在导航栏上放UISearchBar并且做圆角
UIView*titleView=[[UIViewalloc]initWithFrame:
CGRectMake
(0,0,150,35)];//allocatetitleViewUIColor*color
qq_18482295
·
2020-09-11 02:23
ios 键盘右上角添加完成按钮
要在键盘的右上角添加完成按钮,其实就是通过设置它们的inputAccessoryView属性实现的:先看看现实方法:UIToolbar*bar=[[UIToolbaralloc]initWithFrame:
CGRectMake
gx_wqm
·
2020-09-11 01:58
ios
iOS UI入门——使用Objective-C和Swift实现UIButton的显示和点击事件
/初始化buttonUIButton*testButton=[UIButtonbuttonWithType:UIButtonTypeCustom];//设置位置和大小testButton.frame=
CGRectMake
浅浅青丘
·
2020-09-11 00:05
iOS开发UI入门
Swift入门编程实战
iOS UISearchBar改变搜索框的颜色
//搜索框-(UISearchBar*)searchBar{if(_searchBar==nil){_searchBar=[[UISearchBaralloc]initWithFrame:
CGRectMake
JackRenDeveloper
·
2020-09-10 23:47
iOS
Xcode
Object-c
UITabBar
1、UITabBar的创建UITabBar*tabBar=[[UITabBaralloc]initWithFrame:
CGRectMake
(0,420,320,60)];2、创建UITabBarItem
qiummm
·
2020-09-10 23:16
每天一个iOS类
iOS UITabBar 详解
http://blog.sina.com.cn/s/blog_63578f140100w56m.htmlUITabBar*tabBar=[[UITabBaralloc]initWithFrame:
CGRectMake
jeffasd
·
2020-09-10 22:43
iOS
iOS UI入门——使用Objective-C和Swift实现UILabel显示文本
UILabel显示静态文本:-(void)setupLabel{//初始化一个UILabel并确定它的坐标UILabel*testLabel=[[UILabelalloc]initWithFrame:
CGRectMake
浅浅青丘
·
2020-09-10 22:22
iOS开发UI入门
Swift入门编程实战
DTAttributedLabel 使用方法
DTAttributedLabel*noteContentLabel=[[DTAttributedLabelalloc]initWithFrame:
CGRectMake
(0,0,100,50)];//创建对象
westice
·
2020-09-10 21:08
2013年中技术总结
[CAAnimation核心动画练习一]普通的平移,旋转,缩放
privateCALayer*_calyer;}@end@implementationViewController-(void)viewDidLoad{[superviewDidLoad];self.img1.frame=
CGRectMake
灵眼儿上方
·
2020-09-10 14:03
IOS相关
iOS中各种UI控件属性设置示例代码
//初始化UILabel注意指定该对象的位置及大小UILabel*lb=[[UILabelalloc]initWithFrame:
CGRectMake
(0,20,300,200)];//设置文字lb
·
2020-09-08 08:42
iOS-仿手电筒效果实现
的宽度加宽的一定宽度后,拖动效果不是渐变,会突然发送改变,此处简单记录下UISlider的基础用法1、基础设置//初始化UISlider*slider=[[UISlideralloc]initWithFrame:
CGRectMake
一代千禧
·
2020-09-02 15:05
UILabel的使用
常用的属性和方法1.创建OCCGRectframe=
CGRectMake
(0,0,100,200);UILabel*label=[[UILabelalloc]initWithFrame:frame];Swiftletlabel
WC_Pro
·
2020-08-26 23:38
iOS tatableViewCell添加button并获取点击事件
UIButton*btn=[UIButtonbuttonWithType:UIButtonTypeCustom];btn.frame=
CGRectMake
(cell.frame.size.width-70,20,50.0f
小手一背爱谁谁
·
2020-08-26 23:39
UITableVIew
表示图
iOS 轻拍手势 和 tag 的混用
但是手势是不能添加tag值的,那么我们运用的时候如何使用呢、、比如-(void)viewDidLoad{UIImageView*image=[[UIImageViewalloc]initWithFrame:
CGRectMake
风外杏林香
·
2020-08-26 23:47
常见的错误解决总结
UIView设置阴影
1、设置一个四边都相同的阴影UIImageView*testImgView=[[UIImageViewalloc]initWithFrame:
CGRectMake
(100,100,200,100)];[
dfgwang1202
·
2020-08-25 17:19
ui
hybird技术
WebView:web技术与Native技术混合-纯内容展示```oc//1.创建webview,并设置大小WKWebView*webView=[[WKWebViewalloc]initWithFrame:
CGRectMake
barrylyl
·
2020-08-25 17:09
WKWebView解析一
WKWebView*webView;#pragmamark-设置Web界面-(void)setupWkWebView{WKWebView*webView=[[WKWebViewalloc]initWithFrame:
CGRectMake
迷你凤尾
·
2020-08-25 09:02
为文字贴上不同的纹理图案达到镂空效果。
背景图片.png图1.png图2.png图1_使用图片做纹理-(void)test1{CGRectframe=
CGRectMake
(10,30,200,200);CATextLayer*layer=[CATextLayerlayer
I_YoYo
·
2020-08-25 07:06
广告弹窗
UIView*contentView;@property(strong,nonatomic)UIButton*popBtn;_contentView=[[UIViewalloc]initWithFrame:
CGRectMake
IOS技术小牛
·
2020-08-25 06:51
去掉Tabbar顶部线条
-(void)changeTabBar{//不透明self.tabBar.translucent=NO;CGRectrect=
CGRectMake
(0,0,KScreenWidth,49);UIGraphicsBeginImageContext
流沙3333
·
2020-08-25 06:05
iOS 通过按钮的事件来设置背景色
-(void)viewDidLoad{[superviewDidLoad];UIButton*button1=[[UIButtonalloc]initWithFrame:
CGRectMake
(50,200,100,50
展菲
·
2020-08-25 05:58
APP跳转到手机淘宝
viewDidLoad{[superviewDidLoad];UIButton*clickBtn=[UIButtonbuttonWithType:UIButtonTypeCustom];clickBtn.frame=
CGRectMake
Fade1992
·
2020-08-25 04:16
添加导航栏按钮
UIButton*listButton=[UIButtonbuttonWithType:UIButtonTypeCustom];listButton.frame=
CGRectMake
(0,0,22,22
Do_More
·
2020-08-25 00:13
自定义UISearchBar(粗略,慢慢补全)
_searchBar=[[UISearchBaralloc]initWithFrame:
CGRectMake
(0,(self.navigationController.navigationBar.height
wToFly
·
2020-08-24 22:16
iOS pickView封装(自用)
https://github.com/boundlessocean/pickView.git使用方法:1.初始化_pickView=[[BLPickerViewalloc]initWithFrame:
CGRectMake
boundlessocean
·
2020-08-24 21:28
01-学习iOS的动态添加Button和监听UIAlertView按钮的点击事件()
-(IBAction)addButton:(id)sender{CGRectframe=
CGRectMake
(90,200,200,60);UIButton*someAddButton=[UIButtonbuttonWithType
zhengjiajie_2009
·
2020-08-24 20:20
iOS
学习笔记
iOS的UIViewContentMode取值和效果分析
CGRectframe=
CGRectMake
(10,70,300,350);imageView=[[UIImageViewalloc]initWithFrame:frame];imageView.backgroundColor
zhengjiajie_2009
·
2020-08-24 20:20
iOS基础
UIView常用方法汇总
addSubView-(void)viewDidLoad{[superviewDidLoad];//1.addSubViewUIView*testView=[[UIViewalloc]initWithFrame:
CGRectMake
wang_greatmaster
·
2020-08-24 13:56
ios
uiview
ui
·UILable属性详解,设置居上对齐,居中对齐,居下对齐,获取斜体字,字体、大小、单位、颜色
·常用属性和方法有:1、创建CGRectrect=
CGRectMake
(100,200,50,50);UILabel*label=[[UILabelalloc]initWithFrame:rect];2
Eidesen
·
2020-08-24 13:24
ios
uilabel
标签属性
UILabel设置行间距
//UILabelUILabel*label=[[UILabelalloc]initWithFrame:
CGRectMake
(50,50,300,300)];label.backgroundColor=
不慌_
·
2020-08-24 13:39
iphone开发笔记
开发笔记退回输入键盘-(BOOL)textFieldShouldReturn:(id)textField{[textFieldresignFirstResponder];}CGRectCGRectframe=
CGRectMake
feosun
·
2020-08-24 12:48
iOS
iOS下实现下拉图片变大的效果
直接上图上代码self.imageView=[[UIImageViewalloc]initWithFrame:
CGRectMake
(0,0,self.view.frame.size.width,kHEIGHT
yangli20w
·
2020-08-24 11:50
iOS开发
WebView获取当前网页的页面元素
;UIWebView*webView=[[UIWebViewalloc]initWithFrame:
CGRectMake
(0,0,WIDTH,HEIGHT-44)];webView.delegate=self
等待化茧成蝶
·
2020-08-24 10:35
iOS网页开发
【Objective-c】动画学习笔记(三)_CABasicAnimation
viewDidLoad{[superviewDidLoad];//1.创建一个layerCALayer*mylayer=[CALayerlayer];//2.设置layer属性mylayer.bounds=
CGRectMake
MR_詹
·
2020-08-24 06:56
适配web view 高度
//初始化,self.view是父控件/_webView=[[UIWebViewalloc]initWithFrame:
CGRectMake
(0,0,self.view.frame.size.width
zhangjitao_blog
·
2020-08-24 05:45
objective
-
c
【转】在webview加加载数据时添加一个Loading...动画的两种方法
下面就是两种不同的实现方法:第一种方法://创建UIWebViewWebView=[[UIWebViewalloc]initWithFrame:
CGRectMake
(0,44,320,400)]
xinlanzero
·
2020-08-24 04:37
iPhone
上一页
9
10
11
12
13
14
15
16
下一页
按字母分类:
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
其他