An open API service indexing awesome lists of open source software.

https://github.com/meniny/mxlinklabel-in-objective-c

An easy-to-use view to display markup text.
https://github.com/meniny/mxlinklabel-in-objective-c

Last synced: over 1 year ago
JSON representation

An easy-to-use view to display markup text.

Awesome Lists containing this project

README

          

# MXLinkLabel-in-Objective-C

`MXLinkLabel` is an easy-to-use view to display markup text.

## Installation with CocoaPods

```
pod 'MXLinkLabel', '~> 1.0.4';
```

## Usage

```
[[self linkLabel] setMarkupText:@"

MXLinkLabel

This is a sample link."];
[[self linkLabel] setLinkTapHandler:^(NSURL * _Nullable url) {
if (url != nil) {
[[UIApplication sharedApplication] openURL:url];
}
}];
```