[ Web Proxy ]
URL:
Viewing: https://raw.githubusercontent.com/smqh-github/Coding-iOS/master/Coding_iOS/Models/CodingSkill.m [Back]  [Original]

//
//  CodingSkill.m
//  Coding_iOS
//
//  Created by Easeeeeeeeee on 2017/9/18.
//  Copyright  2017 Coding. All rights reserved.
//

#import "CodingSkill.h"

@implementation CodingSkill

- (NSString *)skill_str{
    NSInteger level = MIN([CodingSkill levelList].count, MAX(0, _level.integerValue - 1));
    return [NSString stringWithFormat:@"%@%@", _skillName, [CodingSkill levelList][level]];
}

+ (NSArray *)levelList{
    return @[@"", @"", @"", @"", ];
}

@end

Web Proxy Viewer  |  New URL  |  Original Page