美文网首页iOS开发
从Swift来反思OC的语法

从Swift来反思OC的语法

作者: seasonZhu | 来源:发表于2018-05-18 00:07 被阅读56次

    我目前不得不重新开始写OC,正巧今天就遇到了一个问题,要我解决一下,看了一下问题后,因为有崩溃日志,所以可以很快的判断出原因.
    崩溃日志如下

    [__NSCFString stringByAppendingString:]: nil argument Exception name: NSInvalidArgumentException 
    

    OC中 使用NSString的API进行字符串拼接,看清楚这个API,后面这个aString必须是非空对象,如果aString = nil,那么必挂无疑

    - (NSString *)stringByAppendingString:(NSString *)aString;
    

    我们看看具体的代码

    - (void)locationManager:(CLLocationManager *)manager didUpdateLocations:(NSArray<CLLocation *> *)locations {
        
        NSLog(@"定位成功");
        [_mgr stopUpdatingLocation];//关闭定位
        
        CLLocation *newLocation = locations[0];
        NSLog(@"%@",[NSString stringWithFormat:@"经度:%3.5f\n纬度:%3.5f",newLocation.coordinate.latitude, newLocation.coordinate.longitude]);
        
        CLGeocoder * geoCoder = [[CLGeocoder alloc] init];
        [geoCoder reverseGeocodeLocation:newLocation completionHandler:^(NSArray *placemarks, NSError *error) {
            for (CLPlacemark * placemark in placemarks) {
                NSDictionary *test = [placemark addressDictionary];
                _locationName=[[test objectForKey:@"State"] stringByAppendingString:[test objectForKey:@"City"]];
                 self.locationStr = _locationName;
            }
        }];
    }
    
    -(void)setLllegaModel:(LllegaModel *)lllegaModel
    {
          NSString *address = [@"位置:" stringByAppendingString:[NSString stringWithFormat:@"%@",lllegaModel.address]];
        
         NSString *time = [@"时间:" stringByAppendingString:[NSString stringWithFormat:@"%@",lllegaModel.time]];
        
        
         _topLabel.text = NSLocalizedString(lllegaModel.violationType, nil);
        _centerLabel.text = NSLocalizedString(address, nil);
         _bottomLabel.text = NSLocalizedString(time, nil);
        
    }
    

    第一段代码是定位成功后,获取到一个数组,然后取其第一个后,进行反地理编码,然后通过字典进行keyValue取值.
    这段代码其实有两个问题
    首先,CLLocation *newLocation = locations[0];
    你能保证数组一定有值吗?定位就一定会返回非空数组吗?不能.
    另外,NSDictionary *test = [placemark addressDictionary],[test objectForKey:@"City"]就一定会有值吗?
    这个做法Swift语言中看起来都是十分危险的,所以必须进行健壮性判断

    在Swift中我们一般这么做,数组真的可以取到值的时候,再去进行解析,然后再对city进行取值
    注意city还是可能为nil

    if let placeDict=places?.last?.addressDictionary {
        let state = placeDict["State"] as? String
        let city = placeDict["City"] as? String
    }
    

    我们做Swift的字符串拼接很简单

    let locationName = state + city
    

    注意按照上面这种写法系统会提示错误,要求写成这样

    let locationName = state + city!
    

    感叹号是非常危险的,我不能保证city一定有值,一旦city为nil那么就会和上面的OC代码一样崩溃
    所以我们一般这样写

    let locationName = state + (city ?? "")
    或者
    let locationName = state?.appending(city ?? "")
    

    如果city为nil那么就使用默认值""

    想到这里,就不能不提,Swift相比较OC就编程的过程就严谨的太多,我们太容易会略这样的问题.
    现在又要开始写OC代码了,我觉得Swift不能丢,还是要多看多写多思考.好的思维方式才是编码最重要的一环.

    至于第二段代码,lllegaModel模型是网络请求回来的字符串,我们能保证返回的字符串就是一定有值吗,不会出错吗?所以还是需要添加健壮性代码.

    当然也有一劳永逸的方法,加个分类即可

    - (NSString *)stringByAppendingAnotherString:(NSString *)string {
        if(!string) {
            return self;
        }
        else {
            return [self stringByAppendingString:string];
        }
    }
    

    相关文章

      网友评论

      本文标题:从Swift来反思OC的语法

      本文链接:https://www.haomeiwen.com/subject/lfcwdftx.html