a high-octane action scene with explosions and gunfire:1.2, captured in a dynamic pov shot:1.1, inspired by the iconic line 'hasta la vista, baby' from terminator 2:1.3, rendered in a cinematic style:1.2

Unveiling AI Magic: Craft Your Image App Now! – Part 1

6 October, 2023 admin 0

Always wondered how AI image generator apps work under the hood? Let’s dive into this topic. Since I made one myself, I’ll walk you through the main challenges and steps in this tutorial. We’ll set up two main parts: Glossary:First, let’s clarify a couple of terms: Prerequisites: Let’s start! 1. Backend Setup with Anvil: Retrieving API Keys from Replicate.com: Head to replicate.com, sign in, go to Profile > API tokens, choose a name for your key, create […]

Astrounaut, generated with Stable Diffusion XL 1.0

Ignite Your Passion for Creativity: AI Genie – The Apex of iOS Artistry Unveiled with Stable Diffusion Magic

27 September, 2023 admin 0

Introduction Welcome to iOSAppLove, your go-to source for all things iOS development. Today, we’re excited to introduce you to a groundbreaking app that’s set to revolutionize the world of digital art – AI Genie. This innovative app harnesses the power of cutting-edge AI technology, including ChatGPT, to help you unlock your creative potential like never before. Whether you’re an experienced artist or a beginner, AI Genie is here to take your digital art skills to new heights. […]

Stop iOS update nag

How to Disable iOS 11 Update Reminder (kill the nag)

15 January, 2018 admin 0

“I do not want to update my iOS to iOS 11 or newer, but Apple’s iOS keeps nagging me all the time with a reminder. “Update” or “Remind me later”. This is very annoying… how to stop or prevent that?” There is a solution to get rid of this insisting reminder once and for all. Before we get to the solution, you as the reader should know, that Apple does everything to have as many people as […]

BLOC – Callcenter identifier and blocker

24 May, 2017 admin 0

Check out this new App called BLOC. It’s available in the USA, Germany and Switzerland and holds thousands of numbers of this category (robocalls, scam calls, survey calls and health insurance broker calls). This saves you time for more important things in life and keeps you free from such calls at work or at home. You don’t need Internet access nor to register to use BLOC. Your personal data is encrypted and you remain anonymous. More information […]

WeBe Bluetooth Mouse for iPhone, iPad & iPod touch

27 April, 2013 admin 211

    WeBe, a computer mouse app for the iPhone or the iPod touch, lets you have all the functions of a normal Bluetooth mouse and keyboard in your pocket! The screen of the iPhone or iPod touch serves as a trackpad – slide with three fingers to invoke the keyboard (or use the buttons)!

SNOWGRE_multiplayer

Game Center Tutorial – How to set up a Multiplayer Game like SNOWGRE

18 April, 2013 admin 12

First things first: We just released an update of our MULTIPLAYER App called “SNOWGRE“, available for FREE on the App Store: https://itunes.apple.com/us/app/snowgre/id560450513?mt=8 Please have a look, download it for free and consider buying some extra lives and unlock the multiplayer feature to play against people from all over the world! Play agains me => my nickname is “GABEHOE” or against my co-worker Adrian => “ADIMAN84” 😀 We’d love to hear suggestions and receive feedbacks from you… and […]

white,pages,yellow,tracker,search,find,gps,mobile,411,ringtone,business,911,likes,follower,locator

UIDevice uniqueIdentifier property is deprecated – What now?

7 January, 2013 admin 10

I’m going to show you in this post how to write a workaround for this problem. Many of the existing Apps in the App Store are dependent on this property (uniqueIdentifier) for uniquely identifying a particular device… Apple stopped supporting a unique identifier for iOS (>=5.0). Solution 1: Instead of: [UIDevice uniqueIdentifier]; Use: [UIDevice uniqueDeviceIdentifier]; But wait… where does this property it come from? The following source code solves the problem. It generates a unique identifier based […]

Localizable Strings

Localizable.strings – How to load translation files dynamically from a web server and use them it inside your iPhone App

4 January, 2013 admin 24

We all know we can use “Localizable.strings” to translate our Apps into different languages like this in our code: NSLocalizedString(@”myKey”, @””); … if we have created our “Localizable.strings” file first and put in some keys and values… but what if I want my translation to be dynamic, that is, download it from a webserver and use the key value pairs of that file instead of our “locked” app resources like Localizable.strings after deployment? Fortunately there is a […]

white,pages,yellow,tracker,search,find,gps,mobile,411,ringtone,business,911,likes,follower,locator

Apple Push Notification Services Tutorial: Part 3/3

2 January, 2013 admin 33

Step 3: Build up your database to store user information Now we need a MySQL database to store all user information so that we know where to send the Push Notifications! Build up database to receive user information -> Create a database and a user for that database. -> Update the apns.php file and sendMessage.php file with the database information (username, pwd, database name, host, etc.) We need three tables: “apns_devices”, “apns_device_history” and “apns_messages”. We will actually […]

white,pages,yellow,tracker,search,find,gps,mobile,411,ringtone,business,911,likes,follower,locator

Apple Push Notification Services Tutorial: Part 2/3

2 January, 2013 admin 7

Step 2: Do some stuff on your terminal We now have to generate some files that are needed to communicate with Apple’s pushnotification servers: Generate cert & key files used by your php script to comm. with APNS Remember the “aps_production.cer” file we downloaded? Now we need that one to make all the files we need for our php script to be able to create some nice messages and send them to all the devices that installed […]