
# stopSharingCallback
**回调方法描述**
结束投屏接口Block回调
**回调方法定义**
```
@property(nonatomic, copy) callback stopSharingCallback;
```
**参数描述**
表1参数说明 
| 参数                  | 是否必须 | 类型  | 描述             |
|:---|:---|:---|:---|
| stopSharingCallback | 是    | int | Reason -暂无实际作用 |
   
**示例代码**
```
int result = [mShareServiceController stopSharing:^(id stopSharingCallback) {  
    reason = (int)stopSharingCallback;  
}];
```
