Enumeration Enums In Swift Explained Sometimes we need to create our own data types for certain parts of our app. That’s where Enumerations come in handy. But what are the other benefits of Enum?
For Loop In Swift Explained Many times when you’re creating the App, you will find yourself needing to repeat pieces of code. For instance, if we want to print “Hello World”
Fixing "This Class is not Key Value Coding-Compliant for the Key" Error In Xcode Today, we are going to fix the most common mistakes that people make when they’re new to iOS development. This error takes place when we work with
Arrays In Swift Explained If you’re working with many pieces of data it would be hard to manage them with simply constants and variables. In that case, Arrays can make our life
Fixing "Unrecognized Selector Sent To Instance" Error In Xcode One of the most common errors in Xcode is “Unrecognized Selector Sent To Instance“. Today I will try to explain the reason why we get this error and
Web Apps vs. Native Apps: Which is the Better Option? In this article, we are going to take a look at different types of technologies behind the mobile applications and do a little bit of comparison from a developer standpoint.
Xcode For Windows: The Best Alternatives To Develop iOS Apps One of the most common questions that I get on BeCodable, is how to start an iOS development on Windows, which I think is very important since there are
Swift Tuples In Swift Explained For most of the time you will be working with the single pieces of data, but sometimes data in your apps come in pairs or triplets. For example, imagine if