- 1、本文档共65页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
iOS面试笔记、面试题 ios面试题
PAGE
PAGE 66
iOS面试笔记、面试题 ios面试题
iOS面试笔记、面试题 面试题笔记
注意事项:内存管理、多线程、核心动画、表重用,推送,数据持久化。
前程无忧、智联招聘。
1.编程题 写一个View 从屏幕顶端动画移动到底部
@interface TimingCurveViewController : UIViewController {
IBOutlet UIImageView *basketBall;
}
- (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event {
[UIView beginAnimations:@quot;movementcontext:nil];
[UIView setAnimationCurve:UIViewAnimationCurveEaseIn]; //lt;label
id=quot;code.timingcurve.easeInquot;/gt;
[UIView setAnimationDuration:1.0f];
[UIView setAnimationRepeatCount:3];
[UIView setAnimationRepeatAutoreverses:YES];
CGPoint center = basketBall.center;
if(center.y gt; 85.0f) {
center.y -= 295.0f;
basketBall.center = center;
} else {
center.y += 295.0f;
basketBall.center = center;
}
[UIView commitAnimations];
}
2.写一个内联函数,将字符串@“#ff3344”换成相应的UIColor对象
- (UIColor *)getColor:(NSString*)hexColor
{
unsigned int red,green,blue;
NSRange range;
range.length = 2;
range.location = 0;
[[NSScanner scannerWithString:[hexColor
substringWithRange:range]]scanHexInt:red];
range.location = 2;
[[NSScanner scannerWithString:[hexColor
substringWithRange:range]]scanHexInt:green];
range.location = 4;
[[NSScanner scannerWithString:[hexColor
substringWithRange:range]]scanHexInt:blue];
return [UIColor colorWithRed:(float)(red/255.0f)green:(float)(green / 255.0f) blue:(float)(blue / 255.0f)alpha:1.0f];
}
[self.view setBackgroundColor:[self getColor:@quot;FF0000quot;]];
3.将字符串@“abcdefghijklmn”中的efg 截取出来替换攒成gfe
NSString* str = @quot;abcdefghijquot;;
[str replace : @quot;efg,@“gfe”];
4.写一个取当前日期的方法,输入字符串,格式如下2010-02-19
//获取当前时间
NSDate * nowDate = [NSDate date];
//格式化日期,其实就是利用一个日期格式化对象把日期转换成字符串了
//先定义一个NSDateFormatter对象,然后给这个格式对象定义成自己想要的格式,然后用它去转化其他日期即可
NSDateFormatter *format1=[[NSDateFormatter alloc]init];
[format1 setDateFormat:@quot;yyyy/MM/dd HH:mm:ssquot;];
NSString *str1=[format1 stringFromDate:nowDate];
NSLog(@“%@quot;,str1);
5.解释类、对象、实例方法和实例成员
类:一类事物的抽象,有成员和方法。
对象:类的实例化和具体化
实例方法:
您可能关注的文档
- 2016年上半年浙江省材料员专业管理实务考试试题-2016浙江省公务员试题.doc
- 2016年九年级英语上期末试卷(附答案听力).doc
- 2016年中医专业定期考核试卷(共3篇).doc
- 2016年公务员面试真题及详解(共3篇).doc
- 2016年中考语文试卷.doc
- 2016年关于《童年》中考阅读题.doc
- 2016年公务员面试部分真题(共3篇).doc
- 2016年云南省中考英语试题.doc
- 2016年医师定期考核题库-法律法规(共3篇).doc
- 2016年初中化学竞赛试题及答案.doc
- 国际贸易单证实务与操作(第2版)(徐薇)教学教案.doc
- 电子商务安全技术实用教程(侯安才)教学教案.doc
- Premiere Pro CS6实例教程(第3版)(胡文杰 郭庆)教学教案.doc
- CorelDRAW_X6实例教程(第3版)(叶军)教学教案.doc
- 用友T3财务软件应用立体化教程(薛光来)教学教案.doc
- 数据通信与IP网络技术(李昌)教学教案.doc
- Photoshop CS6图形图像处理标准教程(微课版)(周建国)教学教案.doc
- 边做边学——AutoCAD 2010中文版案例教程(陈东华)教学教案.doc
- Office2010高级应用教程(杨学林)教学教案.doc
- 关于公安局做好大走访工作的心得体会.doc
文档评论(0)