- 1、本文档共43页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
iOS面试笔记、面试题要点
页码: PAGE 43/ NUMPAGES 43
面试题笔记
注意事项:内存管理、多线程、核心动画、表重用,推送,数据持久化。
前程无忧、智联招聘。
1.编程题 写一个View 从屏幕顶端动画移动到底部
@interface TimingCurveViewController : UIViewController {
IBOutlet UIImageView *basketBall;
}
- (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event {
[UIView beginAnimations:@movement context:nil];
[UIView setAnimationCurve:UIViewAnimationCurveEaseIn]; //label id=code.timingcurve.easeIn/
[UIView setAnimationDuration:1.0f];
[UIView setAnimationRepeatCount:3];
[UIView setAnimationRepeatAutoreverses:YES];
CGPoint center = basketBall.center;
if(center.y 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:@FF0000]];
3.将字符串@“abcdefghijklmn”中的efg 截取出来替换攒成gfe
NSString* str = @abcdefghij;
[str replace : @efg ,@“gfe”];
4.写一个取当前日期的方法,输入字符串,格式如下2010-02-19
//获取当前时间
NSDate * nowDate = [NSDate date];
//格式化日期,其实就是利用一个日期格式化对象把日期转换成字符串了
//先定义一个NSDateFormatter对象,然后给这个格式对象定义成自己想要的格式,然后用它去转化其他日期即可
NSDateFormatter *format1=[[NSDateFormatter alloc]init];
[format1 setDateFormat:@yyyy/MM/dd HH:mm:ss];
NSString *str1=[format1 stringFromDate:nowDate];
NSLog(@“%@,str1);
5.解释类、对象、实例方法和实例成员
类:一类事物的抽象,有成员和方法。
对象:类的实例化和具体化
实例方法:主要和类方法区别,类方法声明时前面用加号,实例方法声明时用减号
实例成员:主要和类成员区分,类成员加static,实例成员
文档评论(0)