Sha256: 0434d34dbd81e02b803ad77592b4f8d7730fdf574663ae778db08d42dfdbe2f6
Contents?: true
Size: 763 Bytes
Versions: 6
Compression:
Stored size: 763 Bytes
Contents
// // NSAttributedString+CCLFormat.h // Cocode // // Created by Kyle Fuller on 06/11/2012. // Copyright (c) 2012-2014 Cocode. All rights reserved. // #import <Foundation/Foundation.h> /** Attributed string extension for creating attributed strings from a format string. */ @interface NSAttributedString (CCLFormat) /** Returns an attributed string created by using a given format string as a template into which the remaining argument values are substituted. @param format A format string. This value must not be nil. @return An attributed string created by using format as a template into which the remaining argument values are substituted. */ + (NSAttributedString *)attributedStringWithFormat:(NSString *)format, ... NS_FORMAT_FUNCTION(1,2); @end
Version data entries
6 entries across 2 versions & 1 rubygems