Giter Site home page Giter Site logo

gcmarqueeview's Introduction

GCMarqueeView is a marquee view templete, you can use it in your project. Now, there is two version both objective-c and Swift.

Overview

Requirements

Xcode 10.2+

Installation

  • Clone the repo with git clone command.
  • Open GCMarqueeViewDemo_Swift.xcodeproj or GCMarqueeViewDemo.xcodeproj with Xcode in core folder and run.

Usage

  1. Here is two version, you can choose the version you need.
  2. if you need modify it you can custom GCMarqueeItem.m and GCMarqueeView.m file. Swift
func initUI() {
    imageV = UIImageView()
    imageV!.image = UIImage(named: "flag_icon")
    addSubview(imageV!)

    titleLabel = UILabel()
    titleLabel?.font = UIFont.systemFont(ofSize: titleFont)
    titleLabel?.text = model?.title
    addSubview(titleLabel!)

    let tapGuester = UITapGestureRecognizer(target: self, action: #selector(tap))
    addGestureRecognizer(tapGuester)
}

objective-C

- (void)initUI {
    
    _imageV = [UIImageView new];
    _imageV.image = [UIImage imageNamed:@"flag_icon"];
    [self addSubview:_imageV];
    
    _titleLabel = [UILabel new];
    _titleLabel.font = [UIFont systemFontOfSize:titleFont];
    _titleLabel.text = _model.title;
    [_titleLabel sizeToFit];
    [self addSubview:_titleLabel];
    UITapGestureRecognizer *tapGesture = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(tap)];
    [self addGestureRecognizer:tapGesture];
}

if you have some question, please push issue or emil [email protected]

gcmarqueeview's People

Contributors

loveway avatar

Watchers

James Cloos avatar

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.