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. […]

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)!

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 […]

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

Apple Push Notification Services Tutorial: Part 1/3

28 October, 2012 admin 4

Step 1: Prepare the App to receive Push Notifications In this tutorial I will explain all steps how to make an app for production that can receive Push Notifications. Basically there are 3 steps that must be explained: Prepare the app to receive Push Notifications Login Developer Account & modify/enable app ID to receive PNs Use your new and PN enabled provisioning profile Modify AppDelegate to handle PNs Do some sorcery on your terminal Generate cert & […]

How to make a music player inside an app featuring: Bora Bora App – Tahiti and her islands

26 July, 2012 admin 2

Wondering how to implement a music player inside an app? The interesting part of this short tutorial is the fact that our player also reacts and syncs when the user presses the volume control of his device. That is, we take the current “hardware volume” of his device and enable the user to manipulate the same volume inside the app, too, compatible for iPhone and iPad. Sounds easy, right? Here’s a screenshot showing what we’re going to […]

iOSappLove* gabe = [[iOSappLove alloc] init];

26 July, 2012 admin 0

Welcome to iOSAppLove! We’ll post here tutorials about how to code/design/develop iOS Apps. With our years of experience in developing Apps for iPhone and iPad, we decided to start this amazing blog to share (and gain!) some knowledge with the beloved iOS dev community 🙂 Feel free to write us and request tutorials about anything concerning iOS development! All the best [gabe release]; gabe = nil;