A very simple solution to a problem that bugged for me for sometime. So I was recently doing some work on DNISSwiperCell when I came across the need to be able to access a custom UITableViewCell (DNISItemCell) from the event of a selection made from a UIActionSheet. Since the UIActionSheet was displayed from a button …
Category Archives: iOS
A UITextView with borders
Ok I very rarely ever work with the UITextView (more like ever) and this will be a quick post to go over what I am sure is probably a simple and widely known fix for some developers. So in my current project I have a need for the user to be able to enter multiple …
Date Counting
Ok so I kind of left my previous post a bit incomplete. I did so because there was that bit of date calculation that I wasn’t yet done resolving. Remember this bit of code: int castedInterval = (int)interval; int minutes = (castedInterval / 60) % 60; Ok so I will be honest I wasn’t that …