1.下面的博客介绍得比较好
Xcode 的单/多行注释及注释文档,常用标记(swift)
2.对上面博客的补充
多行注释的另一种写法:
/* 这里可以写多行注释 */
/*
*/
/*
dddd
dddd 这里可以写多行注释
ddddd
*/
- (void)centralManagerDidUpdateState:(CBCentralManager *)central{
NSLog(@"delegate");
NSLog(@"%ld",(long)central.state);
[_myCentralManager scanForPeripheralsWithServices:nil options:nil];
}