错误分类 致命性错误:程序中止运行。例:缺少分号 非致命性错误:提示错误,程序继续运行。 例:除数为0 错误级别 1 1 E_ERROR 致命性错误,脚本中止执行 2 2 E_WARNING 运行时警告 3 4 E_PARSE 编译时解析错误 4 8 E_NOTICE 运行时提醒 9 256 E_U ...
分类:
其他好文 时间:
2019-05-17 19:35:51
阅读次数:
175
在动作表单中我们用很多按钮实现,在这里我们用到了UIActionsheetDelegate协议中的actionSheet:clickedButtonAtIndex:方法实现,其语法形式如下:
- (void)actionSheet:(UIActionSheet*)actionSheet clickedButtonAtIndex:(NSInteger)buttonIndex;
其中,(UIAct...
分类:
移动开发 时间:
2014-12-04 14:03:20
阅读次数:
226
在这里我用到了视图库里的Navigation Controller导航控制器。
提醒操作主要用到了UIAlertviewDelegate协议中的alertView:clickButtonAtIndex:方法实现,其语法形式如下:
- (void) alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)butto...
分类:
移动开发 时间:
2014-12-03 19:20:13
阅读次数:
247