Skip to content
View Innovatewithapple's full-sized avatar
🎯
Focusing
🎯
Focusing
Block or Report

Block or report Innovatewithapple

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

  1. iOSMegnetometer iOSMegnetometer Public

    This iOS package provides all functionality of magnetometer.

    Swift 1

  2. MVVMGithub MVVMGithub Public

    Using GitHub APIs for MVVM architecture understanding.

    Swift

  3. Format Double or Float values withou... Format Double or Float values without rounded. Use this method and set maximum decimals according to your need.
    1
    func IWADoubleFormat(_ a: Double, max: Int) -> Double {
    2
            let stringArr = String(a).split(separator: ".")
    3
            let decimals = Array(stringArr[1])
    4
            var string = "\(stringArr[0])."
    5
    
                  
  4. UIColor Properties for Hex into RGB UIColor Properties for Hex into RGB
    1
    //
    2
    //  UIColor+Extensions.swift
    3
    //  AnimationSeries
    4
    //
    5
    //  Created by Mihir vyas on 27/06/23.
  5. iOS Status bar color change working ... iOS Status bar color change working with iOS13+. Call this function in viewDidLoad() method
    1
    func SetupStatusBar(color:String) {
    2
            if #available(iOS 13.0, *) {
    3
                let app = UIApplication.shared
    4
                let statusBarHeight: CGFloat = app.statusBarFrame.size.height
    5
                
  6. UiImage Extension for different imag... UiImage Extension for different image conversions
    1
    extension UIImage {
    2
        
    3
        /// Convert UIImage into Black & White
    4
        var noir: UIImage? {
    5
            let context = CIContext(options: nil)