首先,我下描写叙述一下bug的发生情况:

在使用UIPickerView实现选择城市的时候。出现这样一个Bug
1、在iOS 6的系统上
2、Picker的数据上省份一栏选择了“香港”或者“澳门”这些没有二级数据的地区
3、然后滑动PickerView的二级选项。结果崩溃,并且不跳不论什么Delegate
4、这个问题在iOS 7或者更高系统的手机上是不存在的。

bug提示信息例如以下:

2014-07-28 19:46:00.711 BaiHe[1719:907] *** Assertion failure in -[UITableViewRowData rectForRow:inSection:], /SourceCache/UIKit/UIKit-2380.17/UITableViewRowData.m:1630

2014-07-28 19:46:00.915 BaiHe[1719:907] *** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'request for rect at invalid index path
(<NSIndexPath 0x1fb81370> 2 indexes [0, 0])'

*** First throw call stack:

(0x340ae2a3 0x3bd2e97f 0x340ae15d 0x34983ab7 0x35ee6ffb 0x35f04919 0x3606ec63 0x3623e8ef 0x35fd923b 0x35ff26ed 0x35fd3d89 0x35f9b3f5 0x36188a39 0x35ebf82f 0x35ebe293 0x35ec91e7
0x35ec8db3 0x35eb6801 0x35eb611b 0x37ba85a3 0x37ba81d3 0x34083173 0x34083117 0x34081f99 0x33ff4ebd 0x33ff4d49 0x37ba72eb 0x35f0a301 0x399cdf 0x26370)

libc++abi.dylib: terminate called throwing an exception



找了非常久。从网上网友处看到了一个解决方式,可是我试了一下。貌似缺少了些什么,所以我把解决方式的所有代码上传,希望能够帮助遇到相同问题的朋友。

解决方式:

- (NSInteger)pickerView:(UIPickerView *)pickerView numberOfRowsInComponent:(NSInteger)component
{
//假设当前component中相应的数组为空。推断一些假设为空,返回1
if ([[self.pickerArray objectAtIndex: component] count] <= 0)
{
return 1;
} return [[self.pickerArray objectAtIndex: component] count];
} - (UIView *)pickerView:(UIPickerView *)pickerView viewForRow:(NSInteger)row forComponent:(NSInteger)component reusingView:(UIView *)view
{
UILabel *label = (UILabel *)view; if (!label)
{
label = [[[UILabel alloc] initWithFrame: CGRectMake(0, 0, 320, 20)] autorelease];
label.backgroundColor = [UIColor clearColor];
label.textAlignment = UITextAlignmentCenter;
label.adjustsFontSizeToFitWidth = YES;
label.numberOfLines = 2;
label.minimumFontSize = 8.0f;
} label.text = [[self.pickerArray objectAtIndex: component] count] ? [[[self.pickerArray objectAtIndex: component] objectAtIndex:row] objectForKey: @"hintValue"] : @""; //这里加上这段推断就可以
if ([[self.pickerArray objectAtIndex: component] count] <= 0)
{
label.userInteractionEnabled = NO;
}
else
{
label.userInteractionEnabled = YES;
} return label;
}

一个关于 UIPickerView 的 bug的更多相关文章

  1. ASP.NET MVC的Ajax.ActionLink 的HttpMethod="Get" 一个重复请求的BUG

    这段时间使用BootStrap+Asp.net Mvc5开发项目,Ajax.ActionLink遇到一个重复提交的BUG,代码如下: @model IList<WFModel.WF_Temp&g ...

  2. 最近提交一个mysql5.7的bug,提醒自己以后注意写SQL要规范

    最近帮朋友提交一个mysql5.7的bug , oracle mysql 的大神还回复我 , 以后注意书写sql规范 , 潜台词是不是不要给他们增加工作量 https://bugs.mysql.com ...

  3. 移动端一个奇怪的触摸bug

    这两天遇到一个很奇怪的bug,在移动端,一个页面里所有的input框都不能点击,我查了一下,里面的没有设置readonly属性,只要页面滚动一下就可以用了,而且,只要我在真机测试的时候,f12开发者模 ...

  4. STL 库中的陷阱----一个难以察觉的 bug

    请找出下面程序的 bug? int maxProfit2(vector<int> &prices) { int local[3] = {0}; int global[3] = {0 ...

  5. 一个因为粗心的Bug

    /** * 数据绑定,分页显示 */ private void updataMenu(final EditText search) { if(listwz==null) { return; } pag ...

  6. 表与表的关系把RD搞乱了,记一个Procedure中的bug

    就是6张表的关联查询,写了一个存储过程,使用4层for来处理 bug:最后一个for中,两张表的关联条件少了一个,结果数据多查了. 排查办法:使用dbms_output.printline('');每 ...

  7. 记一个CRenderTarget中的BUG及解决办法

    转载请注明出处:http://www.cnblogs.com/Ray1024 一.问题描述 在MFC中使用Direct2D有现成的方法,在Visual Studio 2010 SP1及以上环境中MFC ...

  8. 一个毕生难忘的BUG

    记得以前接手过一个Java项目,服务器程序,直接让Jar在linux上跑的那种, 这个项目由两个web服务组成,也就是两条Java进程,主进程 xxx.jar,辅助进程 xxx_helper.jar. ...

  9. 一个比较难忘的BUG

    本学期开设了软件测试课程,在课上有讨论到bug,想到bug,真是很令人头疼的东西,相信每个程序都多多少少会有几个头疼的bug. 初学java时写过一个字符串判断的循环,之前学的C++字符类型用“==” ...

随机推荐

  1. Adding a model

    https://docs.asp.net/en/latest/tutorials/first-mvc-app/adding-model.html Adding data model classes I ...

  2. SQL Server 2005外围应用配置器

     在SQL Server Configuration Manager中,重启“SQL Server(SQL2005)”服务.

  3. 南海区行政审批管理系统接口规范v0.3(规划)4.2.【queryExpireList】当天到期业务查询

    加密前:{"time":"1510053168455","username":"GH_DATA_EXCHANGE",&q ...

  4. 几款jQuery右键菜单插件介绍

    在网页中使用自定义右键菜单,实现上皆为使用javascript禁用浏览器默认的右键菜单,然后在网页中响应鼠标右键事件,弹出自定义的菜单. 类似右键菜单的组件网上很多.一般而言,改变浏览器的默认菜单应当 ...

  5. 多个submit

    <html><body> <form action="welcome.php" method="post">Name: &l ...

  6. Elasticsearch之curl创建索引库和索引时注意事项

    前提, Elasticsearch之curl创建索引库 Elasticsearch之curl创建索引 注意事项 1.索引库名称必须要全部小写,不能以下划线开头,也不能包含逗号 2.如果没有明确指定索引 ...

  7. Android一对多蓝牙连接示例APP

    一对多蓝牙连接示例,基于Google BluetoothChat修改,实现一对多聊天(一个服务端.多个客户端),类似聊天室. 主要功能: 客户端的发出的消息所有终端都能收到(由服务端转发) 客户端之间 ...

  8. java控制台输入输出字符串

    一.实例说明 本实例通过输入流(System.in)实现从控制台接受用户输入信息,并将该信息输出到控制台. 运行效果如下图: 二.实现代码 三.要点说明 该实例的关键就是用到了System类的输入流, ...

  9. Verilog之openMSP430(1)

    openMSP430_IO interrupt Verilog file: omsp_gpio.v //================================================ ...

  10. apache出现You don't have permission to access / on this server提示的解决方法

    在apache的配置文件httpd.conf里定义了对网站根默认的访问权限 #<Directory />    Options FollowSymLinks    AllowOverrid ...