• Trends
  • Topics
  • Nodes
Search for keywords, #hashtags, $sites, add a dash to exclude, e.g. -$theonion.com

From wesleydegroot.nl

NumberFormatter - Wesley de Groot

0 1

NumberFormatter is a class that provides a flexible and easy way to convert numbers into strings and vice versa. It is a part of the Foundation framework and is available on all Apple platforms. In this post, we will explore the various ways in which we can use NumberFormatter to format numbers...

on Tue, 7AM

From wesleydegroot.nl

Building iWebTools - Wesley de Groot

0 0

In this blog post I will show you how I build iWebTools. iWebTools is a tool to check websites and use some tools like a JWT Decoder and a crontab converter. Basic Design I started with a basic design, I'm not really a designer so I tend to create simple designs. Check Websites tab For the check...

on Apr 8

From wesleydegroot.nl

Dutch.swift - Wesley de Groot

0 0

For april fools day, I wanted to write a Swift library that allows you to write Swift code in Dutch. It's called Dutch.swift and it's available on GitHub. Unfortunately it didn't work out in the way I wanted it to, but I still wanted to share it with you. There is a way to get the idea i had in...

on Apr 1

From wesleydegroot.nl

AppDevCon 2025 - Wesley de Groot

0 0

[Introduction] What is SUBJECT? DESCRIPTION OF SUBJECT Installation INSTALLATION INSTRUCTIONS Use Case: SUBJECT EXAMPLE OF USE CASE Caveats CAVEATS IF ANY Wrap up WRAP UP Conclusion CONCLUSION Resources: ...

on Mar 21

From wesleydegroot.nl

Build a personal brand as developer - Wesley de Groot

0 0

Here are some tips to build a personal brand as a developer. Define your brand Start by defining your brand. Who do you target. What are your strengths and skills. What are your values. Where do you stand for. What are your goals. This will help you to create a consistent message and image....

on Mar 18

From wesleydegroot.nl

NavigationStack - Wesley de Groot

0 0

NavigationStack is a framework that provides a navigation stack for macOS and iOS. Navigation was done using NavigationView, but it was deprecated in iOS 16 and was split into two new containers, NavigationStack and NavigationSplitView, and each one of them has new features. What is...

on Mar 15

From wesleydegroot.nl

MacOS Terminal Commands - Wesley de Groot

0 0

In this post i'll show you my favorite macOS terminal commands that i use often or find interesting. This blog post is a different kind of post than i usually write, but i hope you like it. Enable/Disable beta updates Description Command Enroll developer seed sudo...

on Mar 11

From wesleydegroot.nl

JavaScriptCore - Wesley de Groot

0 0

Whether you love it or hate it, JavaScript has become the most important language for developers in the world today. Yet despite any efforts we may take to change or replace it we’d be hard-pressed to deny its usefulness. What is JavaScriptCore? JavaScriptCore is a framework that provides a...

on Mar 4

From wesleydegroot.nl

Expressible Literals - Wesley de Groot

0 0

Expressible Literals in Swift are a powerful feature that allows you to create custom types that can be initialized using literals. This post will show you how to create your own custom types that can be initialized using literals. What is a literal? A literal is a notation for representing a...

on Feb 25

From wesleydegroot.nl

Exploring ControlGroup in SwiftUI - Wesley de Groot

0 0

In SwiftUI, a ControlGroup provides a way to visually group controls together, making your UI more intuitive and structured. It helps you present related controls in a unified manner, enhancing the user experience by logically grouping similar actions. Syntax Overview Here's a basic example of...

on Feb 18

From wesleydegroot.nl

Controllig login and background items - Wesley de Groot

0 2

In This post, we'll take a look at how to control login and background items on macOS. When you start your Mac, you may have noticed that some apps or items automatically start up or appear in the background. This can be useful for apps that you use frequently, but it can also slow down your Mac...

on Feb 11

From wesleydegroot.nl

iOS App States - Wesley de Groot

0 0

When you're developing an iOS app, it's important to understand the different states that your app can be in, to handle them correctly and provide a smooth user experience. In this post, we'll take a look at the different app states in iOS and how you can work with them. Not Running The app is...

on Feb 4

From wesleydegroot.nl

Using MetricKit - Wesley de Groot

0 0

In this post, I will show you how to use MetricKit to collect and analyze performance data from your app. What is MetricKit? MetricKit is a framework introduced in iOS 13 that allows you to collect and analyze performance data from your app. It provides a set of APIs to access metrics such as...

on Jan 28

From wesleydegroot.nl

Accessibility in SwiftUI - Wesley de Groot

0 0

Accessibility in app development is all about making sure everyone, regardless of their abilities, can use your app. Apple’s SwiftUI framework makes integrating accessibility features more streamlined. Here, we'll explore key strategies to make your SwiftUI apps more inclusive. Understanding...

on Jan 14

From wesleydegroot.nl

Apple version numbers - Wesley de Groot

0 0

As you may know, Apple releases new versions of its operating systems every year. The version numbers are not always the same across all platforms, and they don't always follow the same pattern. Here is a list of the version numbers for Apple's operating systems, starting from 2007. Year iOS...

on Jan 7

From wesleydegroot.nl

It's a wrap (2024) - Wesley de Groot

0 0

On 03 February 2024 I launched this (new) website, i wanted to post some more then once in 2 years, in 2024 I've released 64 articles! February In February I've released 11 articles New Website (1 min) [Tags: Website] Welcome to the new website! We hope you like it. We've been working hard to...

on Dec 31

From wesleydegroot.nl

Navigation in SwiftUI - Wesley de Groot

0 0

Navigating the World of SwiftUI: A Comprehensive Guide SwiftUI, Apple's declarative framework for building user interfaces, has revolutionized the way developers create apps for iOS, macOS, watchOS, and tvOS. One of the core components of SwiftUI is its navigation system, which allows users to...

on Dec 24

From wesleydegroot.nl

Contact Provider Extension - Wesley de Groot

0 0

The ContactProvider framework lets your app create (business) contacts on the user's device. It is the prefered way to add contacts to the user's address book without interferring with their (personal) address book. In this post we will create a simple app that uses the ContactProvider framework...

on Dec 17

From wesleydegroot.nl

iOS Settings URL's - Wesley de Groot

0 0

This is a list of internal URLs for settings on your iPhone, iPad, ... Please note that this list will be updated if required, if you see something which is not right, please drop me a message and i'll try to fix it. I included a guide how to extract the newest data. This will probably be...

on Dec 17

From wesleydegroot.nl

Deep linking in SwiftUI - Wesley de Groot

0 0

Deep linking is a powerful feature that allows users to navigate directly to specific content within your app using URLs. In SwiftUI, implementing deep linking can enhance user experience by providing seamless navigation and quick access to desired content. This blog post will guide you through...

on Dec 17

From wesleydegroot.nl

Blog - Wesley de Groot

0 0

Wesley de Groot - As an experienced developer, I'm passionate about sharing my expertise and products.

on Dec 12

From wesleydegroot.nl

Difference between map, flatMap, compactMap - Wesley de Groot

0 0

In this post, we'll explore the differences between map, flatMap, and compactMap in Swift. These three methods are commonly used when working with collections, and understanding their distinctions is crucial for writing clean and efficient code. What is map? map is a higher-order function that...

on Sep 13