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
NSLog
iOS-精度数据处理NSDecimalNumber
作用用于对浮点型数据的精度计算doublenum1=6.67;doublenum2=15.666666;
NSLog
(@"%f",num1*num2);//结果:104.496662,不精确NSDecimalNumber
XTK_iOS
·
2023-02-19 05:40
iOS YYCache源码阅读
1.初始化[[YYCachealloc]initWithName:@""];-(instancetype)init{
NSLog
(@"Use\"initWithName\"or\"initWithPath
某非著名程序员
·
2023-02-18 11:49
思考:如何判断一个NSNumer里面存的数据类型?
floatf1=1;
NSLog
(@"encodingtype:%s",@encode(typeof(f
蔚尼
·
2023-02-18 01:01
iOS常用的宏定义
NSLog
宏#define
NSLog
(format,...)do{\fprintf(stderr,"%s\n",\[[[NSStringstringWithUTF8String:__FILE__]lastPathComponent
咔咔尼亜
·
2023-02-18 00:58
判断项目是debug还是release状态
#ifndef__OPTIMIZE__#define
NSLog
(...)
NSLog
(__VA_ARGS__)#else#define
NSLog
(...){}#endif对于OPTIMIZE这个宏,来标识是否是
frola_
·
2023-02-17 18:47
ios Sqlite 学习
=SQLITE_OK){
NSLog
(@"打开数据库失败");return;}```打开数据库的代码,```sqlite3_open(,)```第
maoege
·
2023-02-17 06:36
[self class] 和 [super class]
blog.csdn.net/erice_e/article/details/73222616@implementationSon:Father-(id)init{self=[superinit];if(self){
NSLog
管乐_VICTOR
·
2023-02-17 01:30
六、isa走位图实例分析
pngLGPerson@interfaceLGPerson:NSObject-(void)sayNB;+(void)sayHappay;@end@implementationLGPerson-(void)sayNB{
NSLog
KB_MORE
·
2023-02-17 00:56
iOS开发 判断字符串是否包含另一字符串
其实有很多,暂列两种)NSString*string=@"HelloChina";if([stringlocalizedCaseInsensitiveContainsString:@"OCHI"]){
NSLog
我是卖报的小行家
·
2023-02-07 03:40
iOS block总结 (二)
interfaceYZPerson:NSObject@property(nonatomic,assign)intage;@end@implementationYZPerson-(void)dealloc{
NSLog
贾小敏1234
·
2023-02-07 01:18
iOS 开发之判断APP是否是第一次启动
]boolForKey:@"firstLaunch"]){[[NSUserDefaultsstandardUserDefaults]setBool:YESforKey:@"firstLaunch"];
NSLog
逆枫0
·
2023-02-06 15:05
OC 对象原理探索(三):对象的本质 & isa
1.联合体、位域1.1结构体先看下面的代码:structSSLCar{BOOLfront;BOOLback;BOOLleft;BOOLright;}sslCar;
NSLog
(@"sslCar:%lu",
SpringSunLcy
·
2023-02-06 14:14
[iOS] __autorelease的碎碎念&疑惑
autoreleasing+pool-(void)testAutoRelease{__autoreleasingUIView*myView;@autoreleasepool{myView=[UIViewnew];}
NSLog
木小易Ying
·
2023-02-06 07:55
[self class] 和 [super class]
问题抛出[selfclass]和[superclass]结果是否一样呢-(instancetype)init{self=[superinit];if(self){
NSLog
(@"%@",NSStringFromClass
只写Bug程序猿
·
2023-02-06 06:15
iOS / NSTimer
self.timer=[NSTimertimerWithTimeInterval:2repeats:trueblock:^(NSTimer*_Nonnulltimer)
NSLog
(@"timer");}
不不不不同学
·
2023-02-06 05:38
【练习】成绩
import"Score.h"intmain(intargc,constchar*argv[]){Score*c=[Scorenew];[csetOcScore:90];intb=[cocScore];
NSLog
AmberAlbee
·
2023-02-05 13:52
iOS开发常见宏集合(持续更新)
本人总结了一些常用的宏,方便开发中使用,已整理单独文件1、单例2、16进制颜色3、全局参数4、appdelegate访问5、快速设置系统字体6、NSUserDefaults设置7、block弱引用8、
NSLog
mac迷你
·
2023-02-05 12:50
iOS-block捕获变量与循环引用问题
1.局部变量auto(自动变量)intage=20;//或autointage=20;auto可省略void(^block)(void)=^{
NSLog
(@"ageis%d",age);};age=25
Arthur澪
·
2023-02-05 12:35
iOS底层原理04 - 类的结构
inta[4]={1,2,3,4};
NSLog
(@"&a=%p,&a[0]=%p,&a[1]=%p",&a,&a[0],&a[1]);//打印结果://&a=0x7ffeefbff460,&a[0]=0x7ffee
OOOlive
·
2023-02-05 11:47
GCD多线程dispatch_group当有异步任务执行要使用dispatch_group_enter和dispatch_group_leave
dispatch_group_create();dispatch_group_enter(group);dispatch_group_async(group,dispatch_get_main_queue(),^{
NSLog
就是这调调c
·
2023-02-04 21:51
控制器加载原理和UI初始化过程
FirstViewController.m文件里重写-init和-initWithNibName:bundle:函数,并打印他们的函数名//FirstViewController.m-(instancetype)init{
NSLog
佟小胆胆小
·
2023-02-04 18:09
笔记-Block深入浅出
课程地址,同时对比另一篇笔记中block在MRC下的表现block的三种类型:全局__NSGlobalBlock__void(^block)(void)=^{
NSLog
(@"block");};
NSLog
lotus_yoma
·
2023-02-04 17:18
NSValue
{charch;doubled;}TRMyData;intmain(intargc,constchar*argv[]){@autoreleasepool{TRPointp;p.x=10;p.y=15;
NSLog
至于么_ni
·
2023-02-04 11:59
iOS alloc&init初探
那么它俩的内部到底做了什么,今天我们就一起来探索下-(void)viewDidLoad{[superviewDidLoad];MGPerson*p=[MGPersonalloc];MGPerson*p1=[pinit];
NSLog
会骑车的iOSer
·
2023-02-04 06:06
iOS之runtime有关
一些与runtime有关的交换方法,改变变量的值,动态添加方法,为分类添加属性等的apiself.p=[Personnew];self.p.name=@"2008奥运会";//改变变量的值
NSLog
(@
男人宫
·
2023-02-03 14:39
iOS分析[self class]和[super class]
@implementationXXSon-(id)init{self=[superinit];if(self){
NSLog
(@"%@",NSStringFromClass([selfclass]));
NSLog
落夏简叶
·
2023-02-03 09:40
模仿Ins的图片选择器
WGImagePickerVCimagePickerWithMaxImagesCount:9];VC.didPickHandle=^(NSArray*_Nullablemodels){//此处为选择资源后的执行操作
NSLog
伟哥最好
·
2023-02-03 06:55
iOS底层 -- Runtime之super、isKindOfClass、isMemberOfClass
现在在Student类的init方法中有如下代码,问打印结果是什么:
NSLog
(@"[selfclass]=%@",[selfclass]);
NSLog
(@"[superclass]=%@",[superclass
happy神悦
·
2023-02-03 05:14
iOS - @synchronized(){}分析
import"YRPerson.h"externvoid_objc_autoreleasePoolPrint(void);intmain(intargc,constchar*argv[]){@autoreleasepool{//insertcodehere...
NSLog
码代码的小马
·
2023-02-03 04:07
iOS开发-- 使用NSNumber将int、float、long等数据类型加入到数组或字典中
//设置值NSNumber*number=[NSNumbernumberWithInt:45];//取值
NSLog
(@"NSNumber%d",[numberintValue]);转载于:https:/
dgdfgdfg56546
·
2023-02-03 02:38
移动开发
swift
记一次检测View,ViewController内存的释放.
CustomeView*view;声明2:@property(strong,nonatomic)CustomeView*view;结果:[viewremoveFromSuperview];-(void)dealloc{
NSLog
Taoai_M
·
2023-02-03 00:42
Swift基础语法
=20//常量一经定义不能自改数值//j=25print(j)阶段性小结var定义变量,设置之后可以修改let定义常量,设置之后不可以修改语句末尾不用使用;在Swift中使用print()替代OC中的
NSLog
print
年轻在于折腾
·
2023-02-02 23:33
调用StoreService函数登陆iTunesStore
resp);-(void)signIn:(NSString*)usernamepassword:(NSString*)passwordcallback:(CallbackBlock)callback{
NSLog
iosjoker
·
2023-02-02 20:48
NSLog
不打印
EditScheme->Run->Arguments->EnvironmentVariables增加"OS_ACTIVITY_MODE"值为"disable",并勾选(注意如果真机运行的时候不打印
NSLog
PM_xia
·
2023-02-02 11:10
copy、mutableCopy与浅拷贝、深拷贝
先来看一段代码NSArray*array;NSMutableArray*arrM=[NSMutableArrayarrayWithObjects:@"a",@"b",@"c",nil];array=arrM;
NSLog
SimpleSJ
·
2023-02-02 02:09
iOS底层之alloc、init探究
BKPerson*p1=[BKPersonalloc];BKPerson*p2=[p1init];BKPerson*p3=[p1init];BK
NSLog
(@"%@-%p-%p",p1,p1,&p1);
K哥的贼船
·
2023-02-02 02:03
dispatch_group_notify多线程同步输出
dispatch_queue_tqueue=dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT,0);dispatch_group_enter(group);
NSLog
嘿嘿和露红叶
·
2023-02-01 12:37
算法面试中的时间复杂度分析
对每个字符串进行排序:slogs,共有n个,所以
nslog
(s)所有的字符串进行排序:O(s*nlog(n))//对字符串进行排序,每一次比较最多为s==>O(n*slogs)+O(s*nlogn)=O
杭河苇
·
2023-02-01 09:27
遍历NSArray的四种方法
for循环-(void)arrayfor{//快速创建一个oc数组NSArray*array=@[@”one”,@”two”];//遍历数组for(inti=0;i
NSLog
大王的锅
·
2023-02-01 02:42
RunLoop
iOS中所有的事件:用户交互、时钟、网络事件如果没有事件发生,程序进入休眠状态@implementationViewController-(void)updateTimer{staticintnum=0;
NSLog
louuXinnn
·
2023-01-31 21:27
iOS设备型号和App版本号
systemInfo);NSString*deviceModel=[NSStringstringWithCString:systemInfo.machineencoding:NSUTF8StringEncoding];
NSLog
青椒辣不辣
·
2023-01-31 18:49
NSFileManager 小计
[NSFileManagerdefaultManager]enumeratorAtPath:dirPath];NSString*path;while(path=[enumernextObject]){
NSLog
呆木大人
·
2023-01-31 14:40
iOS 8到16位密码包含大小写字符数字验证
//大小写数字判断-(BOOL)judgePassWordLegal:(NSString*)pass{//验证密码长度if(pass.length16){
NSLog
(@"请输入8-16的密码");returnNO
一把君子剑
·
2023-01-31 07:56
iOS-ReactiveObjC 的使用
selfrac_valuesAndChangesForKeyPath:@"age"options:NSKeyValueObservingOptionNewobserver:self]subscribeNext:^(RACTwoTuple*_Nullablex){
NSLog
_冰淇淋_
·
2023-01-31 07:49
搭建D
nslog
平台和Sqlmap使用Dns注入
这些文章思路大致都是,先自己搭建一个d
nslog
平台,或者使用一个现成的在线平台,然后sqlmap执行的时候加上--dns-domain=xxxx.com参数就可以
wycdavid
·
2023-01-31 03:14
iOS RAC-进阶用法
map[[self.textField.rac_textSignalflattenMap:^__kindofRACSignal*_Nullable(NSString*_Nullablevalue){
NSLog
wp_Demo
·
2023-01-30 19:55
xcode的
NSLog
打印中文和打印不全问题处理
1.打印不全,使用如下宏,打印时,调用CRLog即可#ifdefDEBUG//#defineCRLog(fmt,...)
NSLog
((@"[文件名:%s]\n""[函数名:%s]\n""[行号:%d]\
越来越胖了
·
2023-01-30 06:40
iOS中修饰词
:@"123"];NSString*str2=@"123";NSMutableString*mutableS=[[NSMutableStringalloc]initWithFormat:@"12"];
NSLog
海上飞鸟
·
2023-01-30 03:27
[self class]和[super class]
implementationDDAnimal@end@interfaceDDCat:DDAnimal@end@implementationDDCat-(instancetype)init{self=[superinit];if(self){
NSLog
厚脸皮大哥
·
2023-01-30 02:59
iOS 形参传递的是什么?
先介绍OC的情况我们知道打印地址的方法如下:
NSLog
(@"地址:%p",p);那么,让我们先打印下,传参后的地址变化,此处我对一个Person对象进行了三次引用,分别是:原始值、传参、全局变量,代码如下
本帅不良
·
2023-01-29 20:31
上一页
13
14
15
16
17
18
19
20
下一页
按字母分类:
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
其他