Skip to content
View gkoca's full-sized avatar
:bowtie:
.ll..lll .ll.l.ll .ll.llll .ll...ll .ll....l
:bowtie:
.ll..lll .ll.l.ll .ll.llll .ll...ll .ll....l
Block or Report

Block or report gkoca

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. Minimalistic badge extension for UIV... Minimalistic badge extension for UIView and UIBarButtonItem
    1
    //
    2
    //  UIView+Badge.swift
    3
    //  Created by Gökhan KOCA on 4.11.2019.
    4
    //
    5
    
                  
  2. Returns bool value according to any ... Returns bool value according to any collection type is nil or empty.
    1
    extension Optional where Wrapped: Collection {
    2
    	var isNilOrEmpty: Bool {
    3
    		return self?.isEmpty ?? true
    4
    	}
    5
    }