Tag: iOS

iOS is Apple’s mobile operating system, powering devices such as the iPhone, iPad, and iPod Touch.

  • Why does the iOS App Store show more languages than my app supports?

    Why does the iOS App Store show more languages than my app supports?

    Written by

    in

    By default, the languages of an app are listed in info.plist by setting the values for the properties list key CFBundleLocalizations. A definition as shown below should result in supported languages English and German. But when looking at the AppStore, the languages shown there do not always correlated with this setting. The reason is that…

    Read more

  • Build and Release a Flutter App

    Build and Release a Flutter App

    Written by

    in ,

    Updating the app’s version number To update the version number, navigate to the pubspec.yaml file and update the following line with the current version string: After the change, run: Build and release the iOS app A detailled description of the whole process is described at docs.flutter.dev. To release the iOS app, you use Flutter to build a…

    Read more

  • Background tasks in iOS

    Background tasks in iOS

    Written by

    in ,

    As already discussed in Background task in iOS action extension, it sometimes becomes necessary to perform time consuming tasks in the background. This is really important, if such a task would block the user interaction. Especially for action and share extensions, this might lead to some waiting time before a task completes and the extension…

    Read more

  • Note To Self: how to instantly create tasks in Trello

    Note To Self: how to instantly create tasks in Trello

    Written by

    in ,

    If you are using the mail import feature of Trello, you can speed up the notes with Note To Self Mail. The app creates notes in Trello in seconds. Setup Note To Self Mail for Trello 1. Get your Trello email address Get your Trello email address by open up one of your boards in…

    Read more

  • Note To Self: new features that make your notes even faster

    Note To Self: new features that make your notes even faster

    Written by

    in ,

    The latest update 1.10 introduces a lot of new features that make your notes even faster. This includes features that improve the usability and also reduce the size of the note. One of the main improvements is the customizable toolbar. This allows a custom positioning of the most used actions above the keyboard. There are…

    Read more

  • Swift: Audioaufnahmen mit AVAudioRecorder

    Swift: Audioaufnahmen mit AVAudioRecorder

    Written by

    in

    In Swift lassen sich Audioaufnahmen sehr komfortabel und einfach über die Klasse AVAudioRecorder realisieren. Beim Initialisieren der Klasse lassen sich bereits Codec, Samplerate, Anzahl der Kanäle und einige andere wichtige Einstellungen festlegen. Hier ein einfaches Code-Beispiel:

    Read more

  • Notiz an mich: jetzt noch schneller mit Postausgang

    Notiz an mich: jetzt noch schneller mit Postausgang

    Written by

    in ,

    Die schnellste Notiz-App wird nun noch schneller: erstellte Notizen werden nun im Postausgang gespeichert und im Hintergrund gesendet. Damit entfällt das lästige Warten, bis die Notiz gesendet wurde. Und: Du behältst den Überblick, welche Notizen zuletzt erstellt wurden. Was ist noch neu? Viele Notiz- oder Aufgaben-Apps (Evernote, Trell, Any.do, Wunderlist, …) unterstützen den Import von Aufgaben…

    Read more

  • Apple Push Notification Services einrichten

    Written by

    in

    Bevor ich mir hier an der Einrichtung des Apple Push Notification Services die Finger wund schreibe, gibt es einen Link zu einer sehr guten Beschreibung, wie man diesen Service einrichtet. Besonders hilfreich ist diese, wenn es um Provisioning Profiles und Zertifikate geht! Nicht umsonst schreibt der Autor auch “Certificates, Oh my!”. http://www.raywenderlich.com/32960/apple-push-notification-services-in-ios-6-tutorial-part-1 Auch wenn sich…

    Read more

  • CSS: Problem beim Rendern von Schriftgrößen in Safari (iPhone)

    Written by

    in

    Die Safari-Version, welche im iOS (iPhone/iPodTouch/iPad) verwendet wird “ignoriert” teilweise beim Render von Webseiten die mit font-size definierten Schriftgrößen bzw. passt diese automatisch an, um die Lesbarkeit zu verbessern. An bestimmten Stellen ist dies nicht schlecht, allerdings kann das auch zu unschönen Veränderungen am Design führen. Diese automatische Anpassung kann jedoch durch folgende CSS-Zeilen verhindert…

    Read more