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
nonatomic
UI控件笔记(十三):UI之MVC
MainModel.h——M#import//模型//模型就是为了做属性而存在的,就是为了存数据用的@interfaceMainModel:NSObject//属性名要和字典的key一样,不然赋不上值@property(
nonatomic
英雄有梦
·
2023-03-30 12:16
IOS入门之UI控件
控件
ui
mvc
iOS
iOS移除SceneDelegate
1.先直接删除SceneDelegate.h/.m文件2.在AppDelegate.h添加@property(strong,
nonatomic
)UIWindow*window;属性#import@interfaceAppDelegate
超级卡布达
·
2023-03-30 12:19
isa结构分析
测试类DebugPerson@interfaceDebugPerson:NSObject@property(
nonatomic
,copy)NSString*name;@end@implementationDebugPerson
_涼城
·
2023-03-30 01:24
FMDB使用
第一步导入头文件import"FMDatabase.h"第一次会报错说未找到这个文件,没事不用理他我们需要创建@property(
nonatomic
,stro
答案在风中飘
·
2023-03-29 14:36
ios开发基础学习笔记(十一)--@property的使用
nonatomic
:高性能,一般使用这个。(2)内存管理方面 1.MRC 1>assign(默认):基本数据类型、枚举、结构体(非OC对象),当2个对象相互引用,一
miloluo
·
2023-03-29 14:47
内存管理
CADisplayLink、NSTimer使用注意CADisplayLink、NSTimer会对target产生强引用,如果target又对它们产生强引用,那么就会引发循环引用@property(strong,
nonatomic
知之未道
·
2023-03-29 14:30
block 使用说明
一、声明、定义方式1、无返回值无参数@property(
nonatomic
,copy)void(^block1)(void);......self.block1=^{NSLog(@"void(^block
yellowzhou
·
2023-03-29 05:54
项目中遇到的error and warning记录
@property(
nonatomic
,strong)idplayingTimeObserver;self.playingTimeObserver=nil;//Nullpassedtoacalleethatrequiresanon-nullargumentNullpassedtoacalleethatrequiresanon-nullargument
何大双
·
2023-03-29 04:30
iOS titleView 点击事件无效
问题:self.navigationItem.titleView添加点击手势无效解决办法://创建一个UIView添加一个属性@property(
nonatomic
,assign)CGSizeintrinsicContentSize
儒雅的减肥大哥
·
2023-03-28 23:38
iOS 本地生成随机验证码
封装一个基于UIView的类,在需要调用的地方直接使用即可:.h#import@interfaceGALCaptcha:UIView@property(
nonatomic
,r
可地出溜
·
2023-03-28 20:27
iOS 运行报错The app delegate must implement the window property if it wants to use a main storyboard ...
Theappdelegatemustimplementthewindowpropertyifitwantstouseamainstoryboardfile.解决办法:1、在AppDelegate.h文件中添加代码:@property(strong,
nonatomic
Sinda_Liu
·
2023-03-28 19:48
iOS 解归档
新建Person类,实现协议方法#import@interfacePerson:NSObject//遵守NSCoding协议@property(
nonatomic
,copy)NSString*name;
MavinShan
·
2023-03-28 16:55
Swift中的闭包简单梳理
是匿名函数Swift中的闭包是一个特殊函数block和闭包都经常用于回调闭包的使用block的用法回顾定义网络请求的类@interfaceHttpTool()/***回调block*/@property(
nonatomic
hjfrun
·
2023-03-28 11:58
iOS 之密码输入框
@protocolUIKeyInput///输入的文本长度是否大于0@property(
nonatomic
,readonly)BOOLhasText;
苏沫离
·
2023-03-28 11:32
11.1 Masonry-scrollview复杂约束
Masonry-scrollview复杂约束#import"ViewController.h"#import"Masonry.h"@interfaceViewController()@property(
nonatomic
草根小强
·
2023-03-28 11:12
iOS底层探索之类&类的结构分析
准备工作创建一个LGPerson类并且创建一个LGTeach类继承自LGPerson类@interfaceLGPerson:NSObject{NSString*hobby;}@property(
nonatomic
安静的泼猴
·
2023-03-28 02:56
AVFoundation识别二维码并加边框
#import"ViewController.h"#import@interfaceViewController()@property(
nonatomic
,strong)AVCaptureSession
初灬终
·
2023-03-27 22:25
IOS - UIView绘制流程 (displayLayer)(记录篇)
性能优化之UI渲染优化-异步渲染使用displayLayer进行异步绘制UIView绘制流程图@interfacePWView:UIView@property(
nonatomic
,strong)NSString
Th丶小伟
·
2023-03-27 21:33
ios实时网速监控
#include#include#include@property(
nonatomic
,assign)longlongintlastBytes;@property(
nonatomic
,assign)BOOLisFirstRate
今年27
·
2023-03-27 21:58
iOS Strong和Copy的区别
首先声明了两个NSString属性,如下:@property(
nonatomic
,strong)NSString*strongStr;@property(
nonatomic
,copy)NSString*
luonaerduo
·
2023-03-27 18:50
关于iOS步数统计CMPedometer/Healthkit的使用
@property(
nonatomic
,strong)CMPedometer*pedometer;_ped
我叫赵小贱
·
2023-03-27 13:49
iOS Window
核心代码如下#import"AlertViewController.h"#import@interfaceAlertViewController()@property(
nonatomic
,strong)
jemmy_xl
·
2023-03-27 12:22
UISlider和UIProgress的基本使用
一般用来表示下载或视频播放的进度UIProgressView*_progressView;//滑动条,一般用来进行调整音乐的音量等UISlider*_slider;}//定义进度条属性@property(retain,
nonatomic
frank_pang1995
·
2023-03-27 05:31
iOS 各种锁
os_unfair_lock头文件#import//pthread_mutex_t头文件#import//pthread_rwlock_t头文件@interfaceViewController()@property(
nonatomic
54197beeb884
·
2023-03-27 03:12
解决 wkwebview加载超时 及 新机首次安装 H5应用,因为网络权限问题,无法加载!重起才可以的问题
本来想着做加载超时处理的,突然发现wkwebview设置不了加载超时(如果有知道的可否告知一下)纠结了半天终于想了一个解决方法比较low但是可以解决上面提到的2个问题创建属性第一步@property(
nonatomic
知秋_一叶
·
2023-03-27 03:27
ios UITableView的简单使用(一)
UITableView的使用:1、在@interface中声明UITableView的属性控件和数组代码:#pragmamark-表格@property(
nonatomic
,strong)UITableView
大白_帕克
·
2023-03-27 01:46
iOS 腾讯地图算步行路线距离
直接上代码@property(
nonatomic
,strong)QMSSearcher*mySearcher;-(QMSSearcher*)mySearcher{if(!
hashakey
·
2023-03-26 23:14
输入价格的格式判断
@property(
nonatomic
,assign)BOOLisHaveDian;@property(
nonatomic
,assign)BOOLisFirstZero;@property(
nonatomic
云端了啦
·
2023-03-26 20:18
iOS UITableViewCell自适应高度
interfaceTextInputCell:UITableViewCell@end#import"TextInputCell.h"#import"Masonry.h"@interfaceTextInputCell()@property(
nonatomic
CaptainRoy
·
2023-03-26 17:14
WCDB CheatSheet
类字段绑定(ORM)Message.h#import@interfaceMessage:NSObject@property(
nonatomic
,assign)intlocalID;@property(
nonatomic
独木舟的木
·
2023-03-26 17:33
iOS 循环震动和播放铃声
直接上代码:#import"MediaTool.h"#import#import@interfaceMediaTool()@property(
nonatomic
,st
BoASir
·
2023-03-26 16:21
IOS删除SceneDelegate.h文件方法
在appDelegate.h中加上@property(strong,
nonatomic
)UIWindow*window;在appDelegate.h中删掉SceneDelegate的代理方法最后在info.plist
锦箫_1
·
2023-03-26 10:42
ios 常用控件之地址选择器
,方便以后扩展功能用,它是继承自UIView的单一选择器1.看看BasePickerView.h文件@interfaceBasePickerView:UIView/**确认按钮*/@property(
nonatomic
咔唯ios
·
2023-03-25 23:06
iOS13 AppDelegate、SceneDelegate兼容与适配
且兼容iOS13以前系统的方法AppDelegate.h#import@interfaceAppDelegate:UIResponder///兼容iOS13之前的版本@property(strong,
nonatomic
LeungKinKeung
·
2023-03-25 17:09
isa底层结构分析
一、对象的本质main.m文件#import#import@interfaceFXPerson:NSObject@property(
nonatomic
,copy)NSString*name;@end@implementationFXPerson
奉灬孝
·
2023-03-25 02:27
UILabel & UITextFiled &UIButton & UIImageView
UILabel标签@property(nullable,
nonatomic
,copy)NSString*text;内容@property(null_resettable,
nonatomic
,strong
董立权
·
2023-03-25 02:01
iOS 使用masonry 添加动画
预先定义一个约束的全局变量,用来接收需要变化的约束@property(
nonatomic
,strong)MASConstraint*bottomViewBottom;[self.bottomViewBottomuninstall
水灵芳蕥
·
2023-03-25 02:02
iOS底层原理-003 类的结构分析
准备工作首先定义两个类继承自NSObject的GLPerson@interfaceGLPerson:NSObject{NSString*happy;}@property(
nonatomic
,copy)NSString
杨奇
·
2023-03-25 00:51
根据优酷URL,解析视频 iOS
上代码比如优酷链接:http://v.youku.com/v_show/id_XNzA3NjE4MTEy.htmlModel@interfaceVideoModel:NSObject@property(
nonatomic
欢欢1206
·
2023-03-25 00:40
webrtc本地采集
建立RTCCameraVideoCapturer(视频生产者)--->RTCVideoSource(消费者)之间的通道头问题*.h@property(
nonatomic
,strong)RTCMediaStream
大飞_2048
·
2023-03-24 21:51
TableVIew和CollectionView上滑加载更多
首先声明一个属性@property(
nonatomic
,assign)BOOLhaveMore;加入scrollView的代理方法-(void)scrollViewDidScroll:(UIScrollView
_疯狂的柚子
·
2023-03-24 15:57
iOS block的写法
;```Asaproperty:```@property(
nonatomic
,copy,nullability)returnTy
FancyMF
·
2023-03-24 15:05
KVO 和 KVC 底层原理总结
下面用一个代码例子来总结原理,首先有一个MyPerson类,里面只有一个age年龄属性:@interfaceMyPerson:NSObject@property(assign,
nonatomic
)intage
凡几多
·
2023-03-24 09:39
无线轮播视图
defineWIDTHself.view.frame.size.width#defineHEIGHTself.view.frame.size.height@interfaceViewController()@property(
nonatomic
傻人有傻福i
·
2023-03-24 03:57
Copy vs MutableCopy, 浅复制和深复制
copy关键字:假如有如下代码:@property(
nonatomic
,copy)NSObject*objA;NSObject*objB=_objA;则赋值语句等效于:[oldValuerelease]
我们是斗士
·
2023-03-24 02:38
ios 系统蓝牙未开启提示框的隐藏
@interfaceHNGDevice()@property(
nonatomic
,strong)CBCentralManager*centralManager;@property(
nonatomic
,strong
骆子_626d
·
2023-03-23 19:51
访问系统图片
//遵守协议@interfaceViewController()@property(
nonatomic
,strong)UIButton*userBtn;@end@implementationViewController
高光炖汤
·
2023-03-23 17:04
iOS计算缓存和清除缓存
/**缓存大小*/@property(
nonatomic
,assign)NSIntegerfileTotlaSize;/开始计算缓存大小-(void)calculateCacheSizeWithoutURLCache
witcheryboy
·
2023-03-23 17:41
iOS 导航条添加按钮
https://gitee.com/Shijingfu/ios_button.git@interfaceSJFUIBarButtonItem:UIBarButtonItem@property(
nonatomic
师景福
·
2023-03-23 12:15
2018-04-26
@property(
nonatomic
,week)iddelegate;截获自动变量值block表达式可截获所使用的自动变量的值.截获:保存自动变量
博oo
·
2023-03-23 09:56
上一页
10
11
12
13
14
15
16
17
下一页
按字母分类:
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
其他