Giter VIP home page Giter VIP logo

sweetswift's People

Contributors

3lvis avatar designatednerd avatar elland avatar marijnschilling avatar nlotra avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

sweetswift's Issues

Method to uppercase/lowercase first letter

When getting localized dates, dateStyle: .full sends the day as lowercase in Norwegian. This is fine if it's part of a sentence, but when you use it as the title of a section for example, you want the day to be uppercase.

Apple returns:
tirsdag 6. desember 2016

We want:
Tirsdag 6. desember 2016

I had to do this in my app.

let dateString = DateFormatter.localizedString(from: self, dateStyle: .full, timeStyle: .none)
let firstLetter = dateString[0].uppercased()
let range = dateString.startIndex..<dateString.index(after: dateString.startIndex)
let finalDateString = dateString.replacingCharacters(in: range, with: firstLetter)

String prepend methods

Appending is all nice and well, but what about prepending?

Would something like that interest you?

extension String {
    mutating func prepend(_ aString: String) {
        self = aString.appending(self)
    }

    func prepending(_ aString: String) -> String {
        return aString.appending(self)
    }
}

Extend enums to have count

extension RawRepresentable where RawValue: IntegerType {
    static var count: Int {
        var i: RawValue = 0
        while let _ = Self(rawValue: i) {
            i = i.successor()
        }
        return Int(i.toIntMax())
    }
}

Swift extension to add count

Right now to get the length of a String you need to use

"hello world".characters.count when ideally it should just be "hello world".length

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.