摘要:
【问题现象】 在block块中使用self时报警告:self strongly in this block is likely to lead to a retain cycle 【问题解决】 __block ViewController *blockSelf = self;_block = ^{ 阅读全文
摘要:
docker images #列出所有镜像# docker search xx #搜索镜像xx docker pull xx 拉取镜像xx docker run -it xx ping #从镜像xx中运行一个新容器并在容器中执行ping命令 docker run -it -v desdir:/src 阅读全文