我的标签显示 Web 服务的一个字段。我想显示标签的 10 个字符。我的代码不起作用。
在 didEndElement 代码中:
if ([elementName isEqualToString:@"StationName"] ) {
StationName.text = retornoSOAP;
returnSOAP = nil;
tReturn = NO;
}
此代码正在运行。它将 StationName 字段显示到 StationName 标签
我的错误在哪里?
- (void)viewDidUnload {
*NSString *temp =@" ";
if ([temp length] > 10) {
NSRange range = [temp rangeOfComposedCharacterSequencesForRange:(NSRange){0, 10}];
temp = [temp substringWithRange:range];
}
StationName.text= temp;
}