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

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