All Projects → YYM1010 → Yjswiftextensions

YYM1010 / Yjswiftextensions

Licence: mit
YJExtensions

Programming Languages

swift
15916 projects

Labels

Projects that are alternatives of or similar to Yjswiftextensions

Friendica Addons
Addons for Friendica
Stars: ✭ 94 (-20.34%)
Mutual labels:  extension
Chrome Better History
Replace the default Chrome history with this better history plugin.
Stars: ✭ 103 (-12.71%)
Mutual labels:  extension
Burp Send To
Adds a customizable "Send to..."-context-menu to your BurpSuite.
Stars: ✭ 114 (-3.39%)
Mutual labels:  extension
Jsonmasking
Replace fields in json, replacing by something, don't care if property is in depth objects. Very useful to replace passwords credit card number, etc.
Stars: ✭ 95 (-19.49%)
Mutual labels:  extension
Kr U2f
A Browser extension that lets you use your phone as a U2F/WebAuthN Authenticator for strong, unphishable 2FA.
Stars: ✭ 101 (-14.41%)
Mutual labels:  extension
Pg stat kcache
Gather statistics about physical disk access and CPU consumption done by backends.
Stars: ✭ 106 (-10.17%)
Mutual labels:  extension
Filebrowser
📂 Web File Browser
Stars: ✭ 13,854 (+11640.68%)
Mutual labels:  extension
Foundationextension
Foundation/Cocoa/UIKit extension kit. Reference document:
Stars: ✭ 115 (-2.54%)
Mutual labels:  extension
Redux Webext
Redux for WebExtensions
Stars: ✭ 101 (-14.41%)
Mutual labels:  extension
Angular Chrome Extension
angular chrome extension scaffold
Stars: ✭ 113 (-4.24%)
Mutual labels:  extension
Virtual Authenticators Tab
Debug webauthn with a chrome extension that adds a virtual authenticators tab to devtools
Stars: ✭ 95 (-19.49%)
Mutual labels:  extension
Periods
PERIODs and SYSTEM VERSIONING for PostgreSQL
Stars: ✭ 101 (-14.41%)
Mutual labels:  extension
Dddplus
🔥 A lightweight flexible development framework for complex business architecture with full ecosystem!轻量级业务中台开发框架,中台架构的顶层设计和完整解决方案!
Stars: ✭ 107 (-9.32%)
Mutual labels:  extension
Vuerd Vscode
ERD Editor vscode extension
Stars: ✭ 95 (-19.49%)
Mutual labels:  extension
Vscode Matlab
MATLAB support for Visual Studio Code
Stars: ✭ 114 (-3.39%)
Mutual labels:  extension
Spy
A simple module that displays DOM attributes on mouseover inside a tooltip.
Stars: ✭ 93 (-21.19%)
Mutual labels:  extension
Wikipediap2p
WikipediaP2P.org Chrome Extension
Stars: ✭ 105 (-11.02%)
Mutual labels:  extension
Servicestackvs
ServiceStackVS - Visual Studio extension for ServiceStack
Stars: ✭ 117 (-0.85%)
Mutual labels:  extension
Web Extension Starter
Typescript, React, Redux, Styled-Component and Webpack based sample extension boilerplate. Runs on Chrome and Firefox. Sample chrome extension.
Stars: ✭ 115 (-2.54%)
Mutual labels:  extension
Twitchpotplayer
Extensions for PotPlayer to watch Twitch streams without streamlinks or any crap.
Stars: ✭ 112 (-5.08%)
Mutual labels:  extension

YJExtensions

Travis branch Language CocoaPods CocoaPods Carthage Compatible GitHub tag license

YJExtensions 常用扩展集合

Adding YJSwiftExtensions to your project (添加 YJSwiftExtensions 到你的项目)

CocoaPods

  1. Add a pod entry for YJSwiftExtensions to your Podfile
    pod 'YJSwiftExtensions'
  1. Install the pod(s) by running
    pod install
  1. Include YJSwiftExtensions wherever you need it with
    import YJSwiftExtensions

Carthage

  1. Add YJSwiftExtensions to your Cartfile.
    github "YJManager/YJSwiftExtensions"
  1. Run
    carthage update
  1. Follow the rest of the standard Carthage installation instructions to add YJSwiftExtensions to your project.

Example举例:

由颜色生成图片

/// 颜色生成图片
public static func yj_createImage(_ color: UIColor) -> UIImage? {

let rect = CGRect(x: 0.0, y: 0.0, width: 1.0, height: 1.0)
UIGraphicsBeginImageContext(rect.size)
let context = UIGraphicsGetCurrentContext()
context?.setFillColor(color.cgColor)
context?.fill(rect)
let image = UIGraphicsGetImageFromCurrentImageContext()
UIGraphicsEndImageContext()
return image ?? nil
}
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].