示例#1
0
        void DrawInfoPlistSection()
        {
            if (!DrawFoldOut(Sections.InfoPlist))
            {
                return;
            }

            DrawLeft();
            var dict = ChangeFile.InfoPlistChanges;

            _plistDrawer.DrawPList(dict);
            DrawRight();
        }
示例#2
0
        void DrawManualEntitlementsSection()
        {
            if (!DrawFoldOut(Sections.Entitlements))
            {
                return;
            }

            DrawLeft();
            var dict = ChangeFile.ManualEntitlements;

            _entitlementsDrawer.DrawPList(dict);
            DrawRight();
        }