Did you ever encounter some strange issues when dealing with broken LLDB in Xcode leaving print()
as your final idea? Welcome to broken Xcode tooling.
TLDR; or answer the title’s question:
Actually, I have no idea how to really fix … Read the rest
Did you ever encounter some strange issues when dealing with broken LLDB in Xcode leaving print()
as your final idea? Welcome to broken Xcode tooling.
TLDR; or answer the title’s question:
Actually, I have no idea how to really fix … Read the rest
In fall 2022 I finally felt comfortable to take the examination for becoming a “Certified Professional in Accessibility Core Competencies” (CPACC) by the “International Association of Accessibility Professionals” (IAAP). And in November I got an email that I passed it! … Read the rest
You should finalize your day with a building project. At least I like to do that. Often you need more than a day to finish some larger task. Also, if you are getting headaches, it’s totally fine to stop coding … Read the rest
This is a frequently updated list of links regarding accessibility I found worth saving. It’s currently focused on mobile (especially iOS development) as this is my main area right now.
Last update: 5th July 2023
This section … Read the rest
Currently, I am working on an app that features a table view with custom cells representing single items or grouped items. You can expand the group cells (to see their content) by selecting them. There are multiple ways to … Read the rest
Working with dates in Swift is a thing I remembered to struggle for a long time as a Junior developer. However, you should get used to objects that have date properties. E.g. you can sort stuff (e.g. see https://mic.st/blog/how-to-sort-an-array-of-objects-by-date-property/) … Read the rest
You might know the very handy sort(by:)
method in Swift that you can use to sort any kind of array. If not, see this as some kind of friendly introduction to you. Read carefully and I will teach you now … Read the rest
While publishing FlippyApp (https://mic.st/blog/portfolio/) to the App Store (https://apps.apple.com/us/app/flippylearn/id1479486387) I learnt a lot about how to deal with the intransparent review process of the Apple App Store.
The two most important:
Currently I work on a side project that uses a lot of UITableViews
for all the different settings within the app. Whenever you change the the datasource of your tableview you need to update it. Here I want to show … Read the rest
Did you ever want to use Swift to draw simple graphs and charts in your iOS app without using some 3rd party library? Also you did not want to reinvent the wheel with CoreGraphics? I thought that was not possible … Read the rest