博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Object-c 语言
阅读量:4961 次
发布时间:2019-06-12

本文共 510 字,大约阅读时间需要 1 分钟。

字符串操作:

http://www.myexception.cn/mobile/455287.html

1,判断两字符串是否相同

NSString *str1 = @"hello pepe";    NSString *str2=[NSString stringWithFormat:@"hello %s","pepe"];   if([str1 isEqualToString:str2]){        NSLog(@"相同");    }    else{        NSLog(@"不同");   } 2,浮点型运算

  CGRect screenRect=[UIScreenmainScreen].bounds;

CGFloat widthf= (screenRect.size.height-self.adView.frame.size.width)/2;

CGFloat heighf=screenRect.size.width-self.adView.frame.size.height-50.0f;

转载于:https://www.cnblogs.com/kuangwu/p/3311818.html

你可能感兴趣的文章
小白学数据分析----->如何设计和分析数据指标
查看>>
ajax的实现
查看>>
python数据持久存储:pickle模块的基本使用
查看>>
注意区别二位数组和二维指针
查看>>
android ant批量打包
查看>>
我的第一个jQuery扩展(slider)
查看>>
WPF模拟雷达界面效果图
查看>>
DirectX11--HR宏关于dxerr库的替代方案
查看>>
添加cordova-plugin-file-opener2后,打包出错
查看>>
wpf SnapsToDevicePixels
查看>>
JavaScript 数值Number类型详解
查看>>
WPF的5种绑定模式(mode)
查看>>
电子商务(电销)平台中用户模块(User)数据库设计明细
查看>>
用SignalR 2.0开发客服系统[系列4:负载均衡的情况下使用SignalR]
查看>>
IIS 7.5 使用URL Rewrite模块简单设置网页跳转
查看>>
C#开发微信门户及应用(15)-微信菜单增加扫一扫、发图片、发地理位置功能
查看>>
ASP.NET MVC 音乐商店 - 7.成员管理和授权
查看>>
与众不同 windows phone (26) - Contacts and Calendar(联系人和日历)
查看>>
php+sqlite cms
查看>>
php实现邮件自动发送之PHPMailer
查看>>