// // RASingleton.h // Apex And Drivers // // Created by Jack on 2018/6/6. // Copyright © 2018年 USAI. All rights reserved. // #import @interface RASingleton : NSObject + (instancetype)sharedInstance; @property (nonatomic,copy) NSString *user; @property (nonatomic,copy) NSString *password; @end