UnityEditor.iOS.Xcode.PBXProject.RemoveAssetTag C# (CSharp) Method

RemoveAssetTag() public method

public RemoveAssetTag ( string tag ) : void
tag string
return void
        public void RemoveAssetTag(string tag)
        {
            foreach (PBXBuildFileData data in this.BuildFilesGetAll())
            {
                data.assetTags.Remove(tag);
            }
            foreach (string str in this.nativeTargets.GetGuids())
            {
                this.RemoveAssetTagFromDefaultInstall(str, tag);
            }
            this.project.project.knownAssetTags.Remove(tag);
        }
PBXProject