App Clips - Users Redemption, Developers Nightmare
I remember once I was listening to a podcast named StackTrace, the guy there (@_inside) had a very interesting idea of apps. He believed that apps could do better than…
I remember once I was listening to a podcast named StackTrace, the guy there (@_inside) had a very interesting idea of apps. He believed that apps could do better than…
On our recent remote KHalfday, a few of us from the iOS community at Jayway took the opportunity to share our best tips and tricks for a more pleasant and…
Table of Contents IntroductionExample Code - Attributed StringsFactory FunctionsTools & LibrariesExample Code - Rich Text Format (RTF)Example Code - Rich Text Format Directory (RTFD)Conclusion Introduction Attributed strings are great for…
After Apple introducing ARKit at WWDC17 and continuously improving on their related frameworks they at the recent WWDC19 introduced major improvements with respect to frameworks and tooling — not least with respect…
If you go to Xamarin home page it will tell you that there are two types of Xamarin, native and forms. Native is for full pledge down to the metal apps for…
When adding the Microsoft.ProjectOxford.Emotion nuget package to a Xamarin iOS project on Visual Studio for Mac you might encounter the following error: Install-Package Microsoft.ProjectOxford.Emotion [...] Could not install package 'Microsoft.Bcl.Build 1.0.14'.…
I recently set up an Xcode project on the preview version of Visual Studio Mobile Center. As I'm fairly new to native iOS development it took a little work to…
Getting my UITableView code just right has been a long and ongoing quest for me, ever since I did my first implementation of the UITableViewDataSource protocol. Other than the delegation pattern,…
Apple has made some big changes in Core Data and taken the burdens from our shoulders. In this blog post we will be comparing Core Data with Xcode 7.3.1 vs…
I have been working in a couple of projects where we have created the “same” application in both Android and iOS. In most cases they look and behave the same…
tl;dr; Gather all your signing entities in one Keychain if possible, it might resolve some weird signing issues you're having. Problem When you have multiple signing entities in your Keychain,…
With the new Xcode 7 beta 6 that was released earlier this week, Apple introduced the new try? keyword. It gives us some more flexibility when handling operations that may throw…
Background A while back I was handing over a project I was working on to a colleague of mine. I had just added him to the Apple Developer account for…
Background Recently I was working on a project where we were adding support for some new languages. One of those languages were German. Now German is notorious for having some…
Xcode 7 brings you two new concepts for Objective-C - Generics and Nullability! I'll cover Generics in another blogpost later. Oh, and nullability somewhat already came with Xcode 6.3, but…