コンポーネント化-ピクチャsepc依存性の導入とtag削除
1633 ワード
pod lib creat ...
を導入しました.テンプレートにはAssets
というフォルダがあります.ここが画像を置く場所です.https://github.com/steventroughtonsmith/cartool
の使い方を紹介しますここ→https://yiweifen.com/html/news/WaiYu/124040.html
はすべての資源を取り出してから # s.resource_bundles = {
# 'EmojiToolModel' => ['EmojiToolModel/Assets/*.png']
# }
imageName
はピクチャをロードできません.なぜならimageName
という方法はmainBundle
からロードされているためですが、現在のピクチャリソースはmainBundle
ではありません.NSBundle *currentBundle = [NSBundle bundleForClass:[self class]];
NSString *imagePath = [currentBundle pathForResource:@"[email protected]" ofType:nil inDirectory@"XDMain.bundle"];
UIImage *image = [UIImage imageWithContentsOfFile:imagePath];
self.backImage = image;
git tag -> tag
git tag -d 0.1.0 -> 0.1.0tag
git tag -> tag
git push origin :0.1.0 -> tag
podキャッシュのクリーンアップ
pod cache clean --all