iOS为啥Lable中文加上英文会出现换行
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了iOS为啥Lable中文加上英文会出现换行相关的知识,希望对你有一定的参考价值。
参考技术A 这个问题跟 Label的lineBreakMode属性有关。lineBreakMode默认是NSLineBreakByWordWrapping,该属性作用是以空格为边界保留单词。
系统默认把中文后边的所有英文当做了一个单词来保留,英文太长一行显示不下所以系统就会自动换行。
lineBreakMode的几种类型:
NSLineBreakByWordWrapping = 0 //以空格为边界,保留单词。
NSLineBreakByCharWrapping //保留整个字符
NSLineBreakByClipping //简单剪裁,到边界为止
NSLineBreakByTruncatingHead //前面部分文字以……方式省略,显示尾部文字内容
NSLineBreakByTruncatingTail //结尾部分的内容以……方式省略,显示头的文字内容。
NSLineBreakByTruncatingMiddle //中间的内容以……方式省略,显示头尾的文字内容。
所以要想不让Label自动换行就把属性设置成保留整个字符. 即:NSLineBreakByCharWrapping
ios - 核心数据:为啥有时会出现“Entity name must not be nil”?
【中文标题】ios - 核心数据:为啥有时会出现“Entity name must not be nil”?【英文标题】:ios - core data: Why does "Entity name must not be nil" sometimes occur?ios - 核心数据:为什么有时会出现“Entity name must not be nil”? 【发布时间】:2011-04-10 14:40:15 【问题描述】:大家好。我正在编写一个 ios 应用程序,其中包含多个子视图,可以通过按一下按钮单独创建。每个子视图都有一个“组”实例,即通过核心数据保存的实体。 'group' 与 'contact' 是一对多的关系。当联系人被拖到子视图上时,它会保存在给定“组”的核心数据中。这可以正常工作 3 次。每 4 次将联系人拖到另一个子视图时,应用程序就会崩溃。
代码如下:
- (void)fetchContacts
if(personRecordIDsArray==nil)
personRecordIDsArray = [[NSMutableArray alloc] init];
NSFetchRequest *request = [[NSFetchRequest alloc] init];
NSEntityDescription *entity = [NSEntityDescription entityForName:@"Contact" inManagedObjectContext:managedObjectContext];
[request setEntity:entity];
[entity release];
NSError *error = nil;
NSMutableArray *mutableFetchResults = [[[managedObjectContext executeFetchRequest:request error:&error] mutableCopy] autorelease];
if (mutableFetchResults == nil)
// Handle the error.
[error release];
[request release];
for (Contact *contact in mutableFetchResults)
if(contact.belongsToGroup == group)
[personRecordIDsArray addObject:contact.recordId];
NSLog(@"%d", [personRecordIDsArray count]);
- (void)addContactsToGroup:(NSArray*)arrayOfPeople
[self fetchContacts];
for(int i = 0; i<[arrayOfPeople count]; i++)
ABRecordRef person = [arrayOfPeople objectAtIndex:i];
NSNumber *personRecordId = [NSNumber numberWithInteger:ABRecordGetRecordID(person)];
if(![self groupContainsContactWithRecordID:personRecordId])
NSString *compositeName = (NSString *)ABRecordCopyCompositeName(person);
//Here is when the error occurs:
Contact *contact = (Contact*)[NSEntityDescription insertNewObjectForEntityForName:@"Contact" inManagedObjectContext:managedObjectContext];
contact.compositeName = compositeName;
contact.recordId = personRecordId;
contact.belongsToGroup = group;
NSError *error = nil;
if (![managedObjectContext save:&error])
NSLog(@"Error in addContactsToGroup!");
[error release];
[personRecordIDsArray addObject:personRecordId];
当尝试将联系人添加到组时,错误提示:
2011-04-10 16:16:36.152 TestApp[796:207] * 由于未捕获的异常“NSInvalidArgumentException”而终止应用程序,原因:“实体名称不得为 nil。” p>
我真的玩了一段时间,也无法在互联网上找到类似的东西。有趣的是,该错误总是在第四次将联系人添加到不同的子视图时发生。有人知道我该如何解决这个问题吗?我真的没有想法......
哦,调试器说:
#0 0x956e2156 in __kill
#1 0x956e2148 in kill$UNIX2003
#2 0x95774899 in raise
#3 0x9578a9b8 in abort
#4 0x91de4fda in __gnu_cxx::__verbose_terminate_handler
#5 0x0141c4e7 in _objc_terminate
#6 0x91de317a in __cxxabiv1::__terminate
#7 0x91de31ba in std::terminate
#8 0x91de32b8 in __cxa_throw
#9 0x0141c635 in objc_exception_throw
#10 0x00ce1486 in +[NSManagedObject(_PFDynamicAccessorsAndPropertySupport) classForEntity:]
#11 0x00ce11f6 in _PFFastEntityClass
#12 0x00d06e73 in +[NSEntityDescription insertNewObjectForEntityForName:inManagedObjectContext:]
#13 0x00009a02 in -[GroupViewController addContactsToGroup:] at GroupViewController.m:152
#14 0x00002f31 in -[GrouperViewController dragingWillEnd:forContacts:atPosition:] at GrouperViewController.m:98
#15 0x0000cbb8 in -[ContactsTableViewController longPressOnView:] at ContactsTableViewController.m:65
【问题讨论】:
奇怪!您可以尝试不将 (Contact*) 转换为insertNewEntityForName
方法吗?我以前从未见过它是这样构造的,即使它有点道理,你也不需要它。看看有没有区别?
【参考方案1】:
我猜测问题在于托管对象上下文已与托管对象模型分离,这使得 NSEntityDescription 无法找到并返回应表示 Contact
实体的类。
最可能的原因是初始化托管对象上下文但未设置其模型或以某种方式将模型设置为 nil。我建议在调用失败之前完全记录托管对象上下文。特别要记录它的模型,以确保它有一个模型,并且每次调用都保持相同的模型。
【讨论】:
以上是关于iOS为啥Lable中文加上英文会出现换行的主要内容,如果未能解决你的问题,请参考以下文章