MyAudioServicesSystemSoundCompletionProc, &iShouldKeepBuzzing ); AudioServicesPlaySystemSound (kSystemSoundID_Vibrate); (六)关于更新,iPhone自动保存document中的内容,如果你把文件放在document中,以后开发又改了这个文件的内容或格式,那更新之后运行毕业论文 很可能出错。解决的办法是,配置文件放bundle里,或者改个文件名。每次更新前都要从App store 下载旧版本,运行一段一时间后,再此基础上编译新版,运行不出错才能上传 (七)初学者或者不小心容易犯的错误:在dealloc里要调用[super dealloc],千万不要调用[super release] (八)需要调试的类最好重写description,输出重要变量的值,因为调试窗口variableView有时候变量值显示不出来。 (九)去掉app图标的发光效果:info.plist里增加Icon already includes gloss effects,值设为YES (十)写代码时字符串太长 怎么换行:NSString *string = @"ABCDEFGHIJKL" \ "MNOPQRSTUVsWXYZ";
(十一)UIImage:stretchableImageWithLeftCapWidth:topCapHeight: 有时图片模糊(blur)的原因:像素没有和device pixel对齐.使用instrument 的Core Animation可以检测这个,勾选"color misaligned images",如果图片显示为红紫色,就是没有对齐 (十二)UIPopoverController如果是用presentPopoverFromBarButtonItem显示的,设备旋转时,popover可以自动调整位置;如果是用presentPopoverFromRect显示的, 需要present again -(void)didRotateFromInterfaceOrientation:(UIInterfaceOrientation)fromInterfaceOrientation { [aPopover presentPopoverFromRect 上一页 [1] [2] [3] [4] [5] [6] 下一页
|