| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
 | | // |  | //  MBleService.m |  | //  UsrBleAssistent |  | // |  | //  Created by USRCN on 15-12-8. |  | //  Copyright (c) 2015年 usr.cn. All rights reserved. |  | // |  |   |  | #import "MBleService.h" |  |   |  | @implementation MBleService |  | -(id)initWithName:(NSString *)name Service:(CBService *)service uuid:(CBUUID *)uuid{ |  |     if (self == [super init]) { |  |         self.name = name; |  |         self.service = service; |  |         self.uuid = uuid; |  |     } |  |     return self; |  | } |  | @end | 
 |