Posts by Saruque Ahamed Mollick
Author Biographical Info: Hi, I am a co-founder of CodeSpeedy Technology Private Limited.
I am in love with technology, music and green places.
In this tutorial, we will learn how to maximize and minimize JFrame window. We will also see how to do this with button clicks. To maximize a JFrame window, you can use the setExte.... Read More
In this tutorial, we will see what an exclamation mark means in Swift. And we will also see the purpose of using exclamation mark with an example. In the Swift programming language.... Read More
In this Swift programming tutorial, you will be learning how to create JSON objects. Here I am going to show you two different ways that can perform the task. To create a JSON obje.... Read More
I faced this issue a few days back and I tried to figure out how to bring back the debug console area on Xcode. I think this is my shortest tutorial, as I will be telling you one s.... Read More
There is no special technique to print something in the debug console of Xcode while dealing with SwiftUI or StoryBoard. You can simply use the print statement. print("Hey print th.... Read More
In this tutorial, we will learn how to concatenate integer with string in Swift with some easy examples. It’s easy to concatenate two strings in Swift as we all know + is eno.... Read More
It’s hard to print a backslash “\” in Swift if you don’t know how to escape from that character. Look at the below code: print("\") It will throw an error: .... Read More
In this tutorial, we will learn how to concatenate strings in Swift. We can concatenate or merge two or multiple strings in Swift easily with the following methods. I have worked i.... Read More