One of the things I really enjoy about the Christmas break, is how much it contributes to looking at things with perspective. It may be the copious amounts of food, the change in schedule, the time to think… Whatever the reason, it really helps assessing how things have gone and where to go next. On …
Tag Archives: swift
Time until next day starts in UTC (Swift)
Although users interact with NewsWave on their iOS and -soon- Mac, some features are provided by a server. So, how can I let users know when the server triggers certain tasks? If they are triggered at regular intervals you can simply calculate on the device how long until it will be triggered again. This reduces calls …
Continue reading “Time until next day starts in UTC (Swift)”
NSImage with Rounded Edges
Nothing like vacation to accelerate personal projects, very happy with how NewsWave for Mac is shaping up. No promises on when, but I’m planning to post more about its progress very soon. One of the items I worked on today is how icons and images will appear in the app, the intent is to show …
Creating a collage by combining an array of images (macOS & iOS)
In NewsWave, when you are in the “Add Feed” view you have the option to search the RSS repository, add a RSS URL or choose from ‘recommended feeds’. Recommended feeds may change over time so, instead of using static images, NewsWave looks at the feeds from each recommended category and creates a collage to represent …
Continue reading “Creating a collage by combining an array of images (macOS & iOS)”
Inserting cells at the top of a UITableView with no scrolling
If you would like your table to be refreshed “ala Twitter”, with new data being added on top, here’s a quick an easy way to do it for iOS: func updateTableViewAfterAdditionInNewArray(){ //Get new feeds and check if counts are different let countOfAddedItems = oldArray.count – newArray.count …
Continue reading “Inserting cells at the top of a UITableView with no scrolling”
Resize NSImage Proportionally (Swift)
I wanted a simple function to resize an image to a desired height, while keeping proportions. Here’s what I came up with (based on Marco implementation): extension NSImage { func resizedImageTo(sourceImage: NSImage, newSize: NSSize) -> NSImage?{ if sourceImage.isValid == false { …
Get Date Day, Month or Year in Swift 3.0
Just a quick update to show how to get Date Day, Month or Year in Swift 3 //Here I’m creating the calendar instance that we will operate with: let calendar = NSCalendar.init(calendarIdentifier: NSCalendar.Identifier.gregorian) //Now asking the calendar what month are we in today’s date: let currentMonthInt = (calendar?.component(NSCalendar.Unit.month, from: Date()))! //Now …
Undo functionality in Core Data (Swift 3)
If you’re developing a Core Data based application for Mac, wouldn’t it be great if you could add undo support? Well, turns out that is a couple of lines away. Follow the simple steps: 1. Make sure your managedObjectContext has an undo manager, without it Core Data can’t keep track of the changes: …
Continue reading “Undo functionality in Core Data (Swift 3)”
Sorting Multi Dimensional Array (Swift 3)
Hello all, This one I’ve found specially useful when working with Core Data fetched arrays. Let’s say that we want to sort the result of a fetch request based on the value of the field “gold”, we would therefore do the following: let dwarfGoldBags = … //Contains the result of a fetch request with one of the …
Continue reading “Sorting Multi Dimensional Array (Swift 3)”
Dates & Components in Swift 3.0
The way we work with dates has changed in Swift 3, the change makes it’s way simpler then before. Let’s look at an example: //CreateDateFromComponents (1st January 2017) var newDate = Date() let newDateComponents = DateComponents(calendar: Calendar.current, timeZone: nil, era: nil, year: 2017, …