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
instancetype
美团外卖弹框实现
效果图:先创建一个弹窗view和一个挡板view//构造方法传入购物车数据和初始的高度+(
instancetype
)show:(NSMutableArray*)foodArray{PopView*menu
gabaman
·
2021-05-06 05:12
浅谈DrawRect
继承UIView,重写(void)drawRect:(CGRect)rect这个方法@interfaceDrawView(){UIImage*image1;UIImage*image2;}@end-(
instancetype
会飞的大马猴
·
2021-05-05 10:36
ios 基于FreeStreamer的流媒体播放器,实现了歌词同步及锁屏控制
演示效果总览.gif附上项目地址chenfengxiaoxixi实现技术点及流程1.单例首先播放器所在controller我是使用单例初始化的,不然pop到上一级控制器后,当前对象释放掉,就无法播放了+(
instancetype
cfxiaoxixi
·
2021-05-05 00:35
NSMutableAttributedString/NSAttributedString
NSMutableAttributedString/NSAttributedString相当于带属性的字符串,实现图文混排使用步骤:1.初始化字符串2.初始化字符串的属性3.将属性赋值给字符串1.初始化字符串的常用方法:-(
instancetype
及时行乐QAQ
·
2021-05-04 07:10
系统通知
object;//通知发布者(是谁要发布通知)-(NSDictionary*)userInfo;//一些额外的信息(通知发布者传递给通知接收者的信息内容)初始化一个通知(NSNotification)对象+(
instancetype
LennyKwok
·
2021-05-03 03:11
无标题文章
QKInfoCardCloseButton继承自UIButton========添加属性@property(nonatomic)UIColor*buttonStrokeColor;=======实现方法-(
instancetype
15c71b2c9951
·
2021-05-02 12:55
单例模式的书写
ARC//定义一个静态变量,在程序运行过程中只有1份staticidinstance;-(
instancetype
)init{staticidobj=nil;//onceToken初始为0staticdispatch_once_tonceToken
Jimmy_P
·
2021-05-02 05:19
07-10、自定义构造方法 - (
instancetype
)initWithXxx: andXxx:
如何自定义构造方法main.m#import#import"Person.h"intmain(intargc,constchar*argv[]){//Person*p=[Personnew];//Person*p=[[Personalloc]init];//p.age=20;//Person*p=[[Personalloc]initWithAge:20];//Person*p=[[Personal
山中石头
·
2021-05-02 03:10
iOS 使用贝塞尔曲线(bezierPath)完成简单图片的制作
简单图片.png创建路径+(
instancetype
)bezierPath;@property(nonatomic)CGFloatlineWidth;线宽@property(nonatomic)CGLineCaplineCapStyle
LYSNote
·
2021-05-01 15:55
uiviewcontroller 生命周期
interfaceViewController()@end@implementationViewController+(void)initialize{[superinitialize];//1}-(
instancetype
加嘞个油seek
·
2021-05-01 12:44
iOS一行代码实现立体轮播图
github下载地址:https://github.com/zhangjiahuan8888/HHBannerView示例图片bannergif.gif使用方法1.初始化(
instancetype
)initWithFrame
爱上火烧的小毛驴
·
2021-05-01 09:57
单例
如果一个类是单例,那么都会提供一个类方法用于快速创建单例对象//而且这个类方法的名称是有一定的规则:share+类名称/default+类名称/类名称开头#defineinterfaceSingle(name)+(
instancetype
coma
·
2021-05-01 08:00
xib使用WKWebView
原因是因为WKWebView并没有实现这个方法-(
instancetype
)initWithCoder:(NSCoder*)coderNS_UNAVAILABLE;经过检查,发现目前只能使用代码方式来创建
MoMo鲸
·
2021-05-01 02:32
oc中
instancetype
和id的区别
相同点:
instanceType
和id都是作为方法的返回类型而被使用。
zero_zql
·
2021-04-30 22:24
iOS 单例的完整写法
import@interfaceMFShareTool:NSObject+(
instancetype
)shareTool;@endimport"MFShareTool.h"@implementationMFShareToolstaticMFShareTool
_MoveForward
·
2021-04-30 16:01
iOS 可变参数
一、可变参数是什么想定义一个方法,但是不知道以后要用的时候想传几个参数进去,最经典的例子就是UIAlertView的构造方法在Objective-C中:-(
instancetype
)initWithTitle
小道萧兮
·
2021-04-30 14:49
UITableView 下拉刷新的实现
#importtypedefvoid(^RefreshHeaderBlock)(void);@interfaceRefreshHeader:UIView-(
instancetype
)initWithTarget
大美象
·
2021-04-28 18:09
基础:OC方法定义可变参数
以下是OC中常用的系统定义的可变参数函数:+(
instancetype
)stringWithFormat:(NSString*)format,...NS_FORMAT_FUNCTION(1,2);voidNSLog
喔牛慢慢爬
·
2021-04-28 14:26
iOS开发经验总结(持续更新)
《代码规范》类的布局-(void)dealloc-(
instancetype
)init#pragmamark-LifeCycleMethods-(void)viewWillAppear:(BOOL)animated
Anson杨春安
·
2021-04-28 05:18
设置View的半边圆角效果
设置View的一边圆角效果如图半圆角实现方式:UIBezierPathCAShapeLayer核心方法:+(
instancetype
)bezierPathWithRoundedRect:(CGRect)
tianyu_f
·
2021-04-28 03:02
iOSの贝塞尔曲线的创建以及controlPoint动态调整曲线角度,另附小绘图软件一只
概念我就不写了,怕自己理解的有偏颇一、创建+(
instancetype
)bezierPath;+(
instancetype
)bezierPathWithRect:(CGRect)rect;//矩形+
一束橘子
·
2021-04-28 03:05
05.ASDK整理:ASViewController使用注意
-(
instancetype
)init{DDLogDebug(@"%s",__PRETTY_FUNCTION__);self=[superinitWithNode:[[ASD
mikado_Q
·
2021-04-27 20:29
NSURL
父类是NSObject统一资源定位符类NSURL常用方法//根据字符串创建NSURL+(nullable
instancetype
)URLWithString:(NSString*)URLString;
翻这个墙
·
2021-04-27 16:55
Xcode自定义代码块
代码块在iOS开发过程中,使用频率相当高,每个人都是用过,比如UIView的初始化方法之一:-(
instancetype
)init{self=[superinit];if(self){}returnself
好_快
·
2021-04-27 12:24
ios之通知------NSNotifitionCenter
通知使用是为了在两个控制器间互相传值,使用时候有以下步奏:1、创建通知NSNotification的初始化方法:-(
instancetype
)initWithName:(NSString*)nameobject
__Mmm
·
2021-04-27 09:12
加载控制器的时候,调用的方法
/***当控件不是从xib、storyboard中创建时,就会调用这个方法**@paramframe**@return*/-(
instancetype
)initWithFrame:(CGRect)frame
zhouios
·
2021-04-27 08:47
UIBezierPath学习 绘制中国地图
#一、UIBezierPath几种图形英文名称:rectangle(长方形)、oval(椭圆)、arc(弧形)、curve(曲线)##1.初始化+(
instancetype
)bezierPath;+(
instancetype
MrKan
·
2021-04-27 07:52
UITableView
自定义单元格表格无论有多少中自定义单元格样式每一种自定义单元格都有复用的能力所以每一个单元格都要带有一个静态局部变量作为唯一标识自定义单元格纯手写的需要在自定义单元格类中重写-(
instancetype
DVWang
·
2021-04-26 21:07
单例
+(
instancetype
)allocWithZone:(struct_NSZone*)zone{staticdispatch_once_tonceToken;dispatch_once(&onceToken
精神薇
·
2021-04-26 16:44
带命令行参数的 mvn integration-test
mvnintegration-test执行完所有的继承测试(在@BeforeClass中初始化环境,在@AfterClass中清理环境)需求在mvnintegration-test命令后面增加参数,在此设为
instanceType
DongGuangqing
·
2021-04-26 07:41
iOS开发小笔记 | 封装一个带左内边距的UITextField
直接设置圆角不做其它处理是这样的:然而设计图上是这样的:现在简单封装了一下,效果是这样的:很强势.png代码简单明了、可读性高,是这样的:注:此控件继承自UITextField#pragmamark-构造方法-(
instancetype
无夜之星辰
·
2021-04-25 20:03
iOS 滑动上面的scrollView,将滑动事件传递给下面的scrollView
UIScrollView@property(nonatomic,copy)void(^isPointInsideHandle)(UIScrollView*scr);@end@implementationScr1-(
instancetype
jemmy_xl
·
2021-04-25 18:27
iOS 数字精准计算之NSDecimalNumber
初始化方法/**创建并返回一个十进制对象@paramdcm十进制的结构体*/-(
instancetype
)initWithDecimal:(NSDecimal)dcm;/**@parammanti
大大盆子
·
2021-04-25 18:39
UICollectionView 分页效果
PageEnable为YES即可;2、分页宽度和屏幕宽度不相等:自定义FlowLayout-(void)awakeFromNib{[superawakeFromNib];[selfinitSettings];}-(
instancetype
superlaing
·
2021-04-25 13:06
约束的使用
view.translatesAutoresizingMaskIntoConstraints=NO;//使对于控件view的fram设置失去作用,让约束替代对控件位置大小的设置1.代码设置直接建立约束条件+(
instancetype
liailing
·
2021-04-24 16:32
iOS 关于构造方法一点知识
-(
instancetype
)init{self=[superinit];if(self){}
不要重名就好
·
2021-04-24 14:40
UIAlertController、UIAlertAction 警告框
NS_CLASS_AVAILABLE_IOS(8_0)@interfaceUIAlertAction:NSObject+(
instancetype
)actionWithTitle:(nullableNSString
阿年同学
·
2021-04-24 01:58
对重写初始化方法时self = [super init]的写法解释
当我们重写父类init方法时,按照苹果官方文档的要求写法为:-(
instancetype
)init{if(self=[superinit]){//写上初始化的代码}returnself;}我也每次都是按照这个规范来写的
伦伦子_f7b3
·
2021-04-23 10:39
渲染代码书写指北之Metal
MetalMetal.png使用MTKView设置MTKView的deviceMTLCreateSystemDefaultDevice();设置MTKView的代理为渲染对象自定义渲染对象创建渲染对象,并接收MTKView-(
instancetype
silasjs
·
2021-04-23 04:47
ios界面设计之自定义Cell
interfaceCJActive:NSObject@property(nonatomic,copy)NSString*icon;@property(nonatomic,copy)NSString*name;-(
instancetype
cj2527
·
2021-04-23 04:48
iOS UIView自定义之纯代码
PS:记录自己工作学习中的一些知识;一、纯代码1、重写-(
instancetype
)initWithFrame:(CGRect)frame方法中添加子控件,但是不设置子控件frame;2、重写-(void
一盏盏灯
·
2021-04-23 02:56
instancetype
和id的区别
instancetype
clang3.5提供的关键字,表示:某方法返回未知类型的OC对象都知道id任意类型关键字,为什么还会出现一个新的关键字?
zfl1024
·
2021-04-22 04:23
UI基础篇-UIViewController
UIViewController//通过代码创建UIViewControllerUIViewController*viewCtl=[[UIViewControlleralloc]init]//通过xib创建-(
instancetype
nickNameDC
·
2021-04-21 17:52
IOS 自定义cell(手码)
JQCell向外提供的创建cell的方法+(
instancetype
)cellWithTableView:(UITableView*)tableView{staticNSString*ID=@"JQList
小小机器人
·
2021-04-21 14:07
iOS:动态更换App Icon
帮助类//MZAppIconService.h#importNS_ASSUME_NONNULL_BEGIN@interfaceMZAppIconService:NSObject+(
instancetype
春暖花已开
·
2021-04-21 05:38
iOS实现循环滚动公告栏
供大家参考,具体内容如下封装了一个继承于UIView的类,如下:#importNS_ASSUME_NONNULL_BEGIN@interfaceXtayNoticeScrollView:UIView-(
instancetype
·
2021-04-14 20:53
ReactiveObjC (三六) (RACSerialDisposable)
interfaceRACSerialDisposable:RACDisposable@property(atomic,strong,nullable)RACDisposable*disposable;+(
instancetype
李潇南
·
2021-04-14 06:52
[self class]和[super class]
问题Teacher继承Person,Person继承NSObject,super与self调用class方法打印结果@implementationTeacher-(
instancetype
)init{self
磊Se
·
2021-04-13 09:41
聊聊machinery的TaskProcessor
的TaskProcessorTaskProcessor//TaskProcessor-canprocessadeliveredtask//Thiswillprobablyalwaysbeaworker
instancetype
TaskProcessorinterface
·
2021-04-05 02:41
golang
聊聊machinery的TaskProcessor
的TaskProcessorTaskProcessor//TaskProcessor-canprocessadeliveredtask//Thiswillprobablyalwaysbeaworker
instancetype
TaskProcessorinterface
·
2021-04-05 01:00
golang
上一页
5
6
7
8
9
10
11
12
下一页
按字母分类:
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
其他