Jump to content

[Template] How to add a Header Image to your PreferenceBundle (PFHeaderCell)


30 posts in this topic

Recommended Posts

Updated (edited)

This tutorial will be about adding a header image to your Preference Bundle or Patcher using PFHeaderCell by PixelFire.
 
It was requested by @@dzcracker here.
 
Before we begin, the tutorial will be newbie friendly but you can also follow the simple instructions on the Developers GitHub page: https://github.com/PixelFireDev/PFHeaderCell
 
@@castix also made a Template with the Header Cell ready to be used which can be downloaded from here: https://www.dropbox.com/s/odkqwl2ljbqfj9g/iosgods_pfheader.nic.tar (extract it to /theos/templates/iphone/)
 
Requirements:
- Jailbreak
- Theos installed (Tutorial here)
- iFile/Filza/iFunBox/iTools etc. for editing the files.
 
 
Instructions:
We will be using the Patcher Temaplate from here for ease instead of the default theos templates.
 
Step 1: Start a new project and select the iosgods/patcher option if you're using the template above.
 

 

iOSGods-iPad:~ root# /var/theos/bin/nic.pl
NIC 2.0 - New Instance Creator
------------------------------
  [1.] iosgods/bettertweak
  [2.] iosgods/cscipatcher
  [3.] iosgods/patcher
  [4.] iosgods/patcherheader
  [5.] iosgods/tweak
  [6.] iphone/application
  [7.] iphone/library
  [8.] iphone/tool
Choose a Template (required): 3
Project Name (required): TestHeader
Package Name [com.yourcompany.testheader]: iosgods.com.testheader
Author/Maintainer Name [System Administrator]: DiDA
[iosgods/patcher] MobileSubstrate Bundle filter [com.apple.springboard]:
[iosgods/patcher] List of applications to terminate upon installation (space-separated, '-' for none) [SpringBoard]: -
Instantiating iosgods/patcher in testheader/...
Done.
iOSGods-iPad:~ root#

 


 
Step 2: Download the PFHeaderCell.mm and PFHeaderCell.h from here https://github.com/PixelFireDev/PFHeaderCell
 
Step 3: Send the PFHeaderCell.mm and PFHeaderCell.h to your /ProjectFolder/ProjectFolderPreferences/ (in my case it's /var/root/testheader/TestHeader/)
 
hJfb3vrl.png
 
Step 4: Now we need to include the 2 files inside Makefile so edit your Makefile with any text editor and PFHeaderCell like this:

ProjectName_FILES = ProjectName.mm PFHeaderCell.mm

 

 

ARCHS = armv7 arm64
include theos/makefiles/common.mk

BUNDLE_NAME = TestHeader
TestHeader_FILES = TestHeader.mm PFHeaderCell.mm
TestHeader_INSTALL_PATH = /Library/PreferenceBundles
TestHeader_FRAMEWORKS = UIKit
TestHeader_PRIVATE_FRAMEWORKS = Preferences

include $(THEOS_MAKE_PATH)/bundle.mk

internal-stage::
	$(ECHO_NOTHING)mkdir -p $(THEOS_STAGING_DIR)/Library/PreferenceLoader/Preferences$(ECHO_END)
	$(ECHO_NOTHING)cp entry.plist $(THEOS_STAGING_DIR)/Library/PreferenceLoader/Preferences/TestHeader.plist$(ECHO_END)

 


 
Step 5: Save the Makefile and enter the "Resources" folder so we can edit the ProjectName.plist.
 
Step 6: Edit the ProjectName.plist inside /ProjectFolder/ProjectPreferences/Resources/ and add this XML code at the top right under the <array> tag opens.
 

<dict>
    <key>cell</key>
    <string>PSStaticTextCell</string>
    <key>cellClass</key>
    <string>PFHeaderCell</string>
    <key>background</key>
    <string>#EFEFF4</string>
    <key>image</key>
    <string>/Library/PreferenceBundles/ProjectNamePreferences.bundle/header.png</string>
    <key>height</key>
    <integer>100</integer>
</dict>

 
Example:

 

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
	<key>items</key>
	<array>
		<dict>
			<key>cell</key>
			<string>PSStaticTextCell</string>
			<key>cellClass</key>
			<string>PFHeaderCell</string>
			<key>background</key>
			<string>#EFEFF4</string>
			<key>image</key>
			<string>/Library/PreferenceBundles/TestHeader.bundle/header.png</string>
			<key>height</key>
			<integer>100</integer>
		</dict>
		<dict>
			<key>cell</key>
			<string>PSGroupCell</string>
			<key>footerText</key>
			<string>This text will appear under your first switch.</string>
		</dict>
		<dict>
			<key>cell</key>
			<string>PSSwitchCell</string>
			<key>default</key>
			<false/>
			<key>defaults</key>
			<string>iosgods.com.testheader</string>
			<key>key</key>
			<string>kKey</string>
			<key>label</key>
			<string>Switch Text 1</string>
		</dict>
		<dict>
			<key>cell</key>
			<string>PSGroupCell</string>
			<key>footerText</key>
			<string>This text will appear under your second switch.</string>
		</dict>
		<dict>
			<key>cell</key>
			<string>PSSwitchCell</string>
			<key>default</key>
			<false/>
			<key>defaults</key>
			<string>iosgods.com.testheader</string>
			<key>key</key>
			<string>kGems</string>
			<key>label</key>
			<string>Switch Text 2</string>
		</dict>
		<dict>
			<key>cell</key>
			<string>PSGroupCell</string>
		</dict>
		<dict>
			<key>cell</key>
			<string>PSTextCell</string>
			<key>label</key>
			<string>Made by DiDA.</string>
		</dict>
		<dict>
			<key>action</key>
			<string>link</string>
			<key>cell</key>
			<string>PSButtonCell</string>
			<key>icon</key>
			<string>[email protected]</string>
			<key>label</key>
			<string>Visit iOSGods.com</string>
		</dict>
	</array>
	<key>title</key>
	<string>TestHeader</string>
</dict>
</plist>
 

 


 
Step 7: Save the plist you just modified and now we will need the Header Images.
 
Headers have to be scaled in 320x100 pixels and 640x200 (or 750x250 - mess around with the resolutions) for @2x resolution. For best results, make the header image with a transparent background so open up Photoshop and get to work. :p
 
Once you have your images, place them in the /Resources/ folder and make sure their names are header.png & [email protected] otherwise the header image won't appear.
 
Qc93EQa.png
 
Step 8: Now compile and install your package then check your iDevice settings.

iOSGods-iPad:~ root# cd /var/root/testheader
iOSGods-iPad:~/testheader root# make package install

 
 
 
Finished result:
iEQHpGXl.png
The head quality of the picture if because I resized the image with Photoshop instead of making it from scratch.
 
 
Credits:
PixelFireDev
@castix

@DiDA

Updated by DiDA
Posted

Thank you boss

How to remove backroud of image header?

I haven't messed with it a lot but you can set the hex color to #EFEFF4 which makes it the same color as the background in settings.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below. For more information, please read our Posting Guidelines.
Reply to this topic... Posting Guidelines

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Our picks

    • Matching Story v1.35.02 [ +6 Cheats ] Auto Win
      Modded/Hacked App: Matching Story By VERTEX GAMES PTE. LTD.
      Bundle ID: matching.story
      iTunes Store Link: https://apps.apple.com/ph/app/matching-story/id1558803930?uo=4


      🤩 Hack Features

      - Auto Win

      - Coins

      - Diamonds [ Win Match Linked With Moves ]

      - Lives

      - Booster

      - Moves
        • Like
      • 9 replies
    • Matching Story v1.35.02 [ +6 Jailed ] Auto Win
      Modded/Hacked App: Matching Story By VERTEX GAMES PTE. LTD.
      Bundle ID: matching.story
      iTunes Store Link: https://apps.apple.com/ph/app/matching-story/id1558803930?uo=4

       
      🤩 Hack Features

      - Auto Win

      - Coins

      - Diamonds [ Win Match Linked With Moves ]

      - Lives

      - Booster

      - Moves
        • Like
      • 12 replies
    • Mr Hero - Idle RPG Cheats v1.95.4 +3
      Modded/Hacked App: Mr Hero - Idle RPG By MONSTER PLANET Corp.
      Bundle ID: com.MonsterPlanet.MrHero
      iTunes Store Link: https://apps.apple.com/us/app/mr-hero-idle-rpg/id1580319643?uo=4

       

      📌 Mod Requirements

      - Jailbroken iPhone or iPad.
      - iGameGod / Filza / iMazing.
      - Cydia Substrate, ElleKit, Substitute or libhooker depending on your jailbreak (from Sileo, Cydia or Zebra).

       

      🤩 Hack Features

      - Multiply Attack (PvE)
      - God Mode (PvP) => Always Win
      - Freeze (Some) Currencies (Gem may not work, can't fully tested)

      DO NOT ONLY BUY VIP FOR THIS AND EXPECT IT CAN BE UPDATED

       

      Non-Jailbroken Hack: https://iosgods.com/topic/190756-mr-hero-idle-rpg-v1933-jailed-cheats-3/

       

      ⬇️ iOS Hack Download Link: https://iosgods.com/topic/190640-mr-hero-idle-rpg-cheats-v1942-3/
        • Winner
        • Like
      • 40 replies
    • Frozen War v1.9.1 +1 Jailed Cheat [ Damage ]
      Modded/Hacked App: Frozen War By IGG SINGAPORE PTE. LTD.
      Bundle ID: com.igg.ios.frozenwar
      iTunes Store Link: https://apps.apple.com/us/app/frozen-war/id6738370929?uo=4

       
       

      🤩 Hack Features

      - Damage Multiplier
        • Thanks
        • Like
      • 2 replies
    • Frozen War v1.9.1 +1 Cheat [ Damage ]
      Modded/Hacked App: Frozen War By IGG SINGAPORE PTE. LTD.
      Bundle ID: com.igg.ios.frozenwar
      iTunes Store Link: https://apps.apple.com/us/app/frozen-war/id6738370929?uo=4

       
       

      🤩 Hack Features

      - Damage Multiplier
        • Winner
        • Like
      • 6 replies
    • Tower Defense - King Of Legend [All versions] | +4 Cheats
      Modded/Hacked App: Tower Defense - King Of Legend By Pham Quang
      Bundle ID: com.towerdefense.kingoflegend
      iTunes Store Link: https://apps.apple.com/us/app/tower-defense-king-of-legend/id1559832738?uo=4


      🤩 Hack Features

      - Firerate Max
      - Range Max
      - OHK
      - High kill reward

       
        • Thanks
        • Winner
        • Like
      • 2 replies
    • Tower Defense - King Of Legend [v2.2.3] | +4 Cheats
      Modded/Hacked App: Tower Defense - King Of Legend By Pham Quang
      Bundle ID: com.towerdefense.kingoflegend
      iTunes Store Link: https://apps.apple.com/us/app/tower-defense-king-of-legend/id1559832738?uo=4

      🤩 Hack Features

      - Firerate Max
      - Range Max
      - OHK
      - High kill reward

      • 2 replies
    • Summoners War Cheats v8.6.7 +7
      Hacked App: Summoners War By Com2uS Corp.
      iTunes Link: https://itunes.apple.com/us/app/summoners-war/id852912420?mt=8&uo=4&at=1010lce4
      Bundle ID: com.com2us.smon.normal.freefull.apple.kr.ios.universal

      Hack Features:
      - Damage Multiplier 
      - Godmode
      - Monster Count Unlink
      - Max Accuracy
      - No Skill Cooldown
      - First Turn
      - Build buildings without having required level
      - Antiban
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 6,841 replies
    • Evertale v2.0.98 - [ Enemies Don't Attack & More ]
      Modded/Hacked App: Evertale By ZigZaGame Inc.
      Bundle ID: com.zigzagame.evertale
      iTunes Store Link: https://itunes.apple.com/us/app/evertale/id1263365153
       

      Mod Requirements:
      - Non-Jailbroken/Jailed or Jailbroken iPhone/iPad/iPod Touch.
      - Cydia Impactor.
      - A Computer Running Windows/Mac/Linux.


      Hack Features:
      - Enemies Don't Attack
      - Spirit Increase
      - High Silver Reward After Battle
      - Guarantee Capture
      - 999 Team Cost 
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 535 replies
    • Evertale v2.0.98 - [ Enemies Don't Attack & More ]
      Modded/Hacked App: Evertale By ZigZaGame Inc.
      Bundle ID: com.zigzagame.evertale
      iTunes Store Link: https://itunes.apple.com/us/app/evertale/id1263365153

      Mod Requirements:
      - Jailbroken iPhone/iPad/iPod Touch.
      - iFile / Filza / iFunBox / iTools or any other file managers for iOS.
      - Cydia Substrate (from Cydia).
      - PreferenceLoader (from Cydia).


      Hack Features:
      - One Hit Kill - Linked With Enemies
      - Enemies Don't Attack
      - Spirit Increase
      - High Silver Reward After Battle
      - Guarantee Capture
      - 999 Team Cost 
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 1,099 replies
    • MADFUT 25 v1.1.3 +7 Jailed Cheats [ Unlimited Coins, Packs, Dupes ]
      Modded/Hacked App: MADFUT 25 By MEDFUT, OOO
      Bundle ID: com.madfut.madfut25
      iTunes Store Link: https://apps.apple.com/us/app/madfut-25/id6593674091?uo=4


      Hack Features:
      - Unlimited Coins -> Earn or spend some. [ VIP ]
      - Unlimited LTM Points -> Earn or spend some. [ VIP ]
      - Unlimited Packs -> Buy/use one.
      - Unlimited Tokens -> Use one.
      - Unlimited Draft Puzzle Market Items -> Buy an item.
      - Unlimited Free Pack Reward Points [ VIP ]
      - Unlimited Dupes -> Quick sell any card then re-launch the game. [ VIP ]


      Jailbreak required hack(s): [Mod Menu Hack] MADFUT25 v1.0 +7 Cheats [ Unlimited Coins, Packs, Dupes ] - Free Jailbroken Cydia Cheats - iOSGods
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
      For more fun, check out the Club(s): https://iosgods.com/clubs/
        • Informative
        • Agree
        • Haha
        • Thanks
        • Winner
        • Like
      • 117 replies
    • MADFUT 25 v1.1.3 +7 Cheats [ Unlimited Coins, Packs, Dupes ]
      Modded/Hacked App: MADFUT 25 By MEDFUT, OOO
      Bundle ID: com.madfut.madfut25
      iTunes Store Link: https://apps.apple.com/us/app/madfut-25/id6593674091?uo=4


      Hack Features:
      - Unlimited Coins -> Earn or spend some. [ VIP ]
      - Unlimited LTM Points -> Earn or spend some. [ VIP ]
      - Unlimited Packs -> Buy/use one.
      - Unlimited Tokens -> Use one.
      - Unlimited Draft Puzzle Market Items -> Buy an item.
      - Unlimited Free Pack Reward Points [ VIP ]
      - Unlimited Dupes -> Quick sell any card then re-launch the game. [ VIP ]


      Non-Jailbroken & No Jailbreak required hack(s): [IPA Mod Menu] MADFUT25 v1.0 +7 Jailed Cheats [ Unlimited Coins, Packs, Dupes ] - Free Non-Jailbroken IPA Cheats - iOSGods
      Modded Android APK(s): https://iosgods.com/forum/68-android-section/
      For more fun, check out the Club(s): https://iosgods.com/clubs/
        • Informative
        • Agree
        • Thanks
        • Winner
        • Like
      • 77 replies
×
  • Create New...

Important Information

We would like to place cookies on your device to help make this website better. The website cannot give you the best user experience without cookies. You can accept or decline our cookies. You may also adjust your cookie settings. Privacy Policy - Guidelines