A Comprehensive Guide: Checking if a String Contains Another String in Swift

In Swift programming, determining whether a string contains another string is a common task. Whether you’re building a search feature, data validation system, or text processing application, efficiently checking for substrings is essential. Thankfully, Swift provides several methods to accomplish this task effectively. In this guide, we’ll explore various approaches to check if a string … Read more

Swift Guide: How to Get the Last Path Component

Title: Swift Guide: How to Get the Last Path Component Are you working on a Swift project where you need to extract the last component from a path string? Whether you’re dealing with file paths, URLs, or any other string that represents a hierarchical structure, extracting the last component can be a common requirement. In … Read more

UITableView Tutorial : Creating a simple app in swift

This article has been updated for Swift 3

One of the most versatile UI elements which you come across in iOS development is UITableView.With a combination of custom cell and animation its possibilities are endless.From fancy menu to image scroll you must have found it at many places. In fact UITableView is so versatile that you can truly divide UI in two parts those which can be made using UITableView and those which cannot.I must admit in one of my lazy spur i rotated UITableView using CGAffineTransform to implement horizontal scroll.

Read more