mirror of
https://github.com/wu736139669/ManagerDemo.git
synced 2026-08-05 05:55:42 +00:00
20 lines
558 B
Objective-C
20 lines
558 B
Objective-C
//
|
|
// NSAttributedStringRunDelegates.h
|
|
// DTCoreText
|
|
//
|
|
// Created by Oliver on 14.01.11.
|
|
// Copyright 2011 Drobnik.com. All rights reserved.
|
|
//
|
|
|
|
#if TARGET_OS_IPHONE
|
|
#import <CoreText/CoreText.h>
|
|
#elif TARGET_OS_MAC
|
|
#import <ApplicationServices/ApplicationServices.h>
|
|
#endif
|
|
|
|
void embeddedObjectDeallocCallback(void *context);
|
|
CGFloat embeddedObjectGetAscentCallback(void *context);
|
|
CGFloat embeddedObjectGetDescentCallback(void *context);
|
|
CGFloat embeddedObjectGetWidthCallback(void *context);
|
|
CTRunDelegateRef createEmbeddedObjectRunDelegate(id obj);
|