Header | |
---|---|
From | AUPlugIn.h |
To | AudioComponent.h |
Declaration | |
---|---|
From | CFComparisonResult CFStringCompareWithOptionsAndLocale ( CFStringRef theString1, CFStringRef theString2, CFRange rangeToCompare, CFOptionFlags compareOptions, CFLocaleRef locale); |
To | CFComparisonResult CFStringCompareWithOptionsAndLocale ( CFStringRef theString1, CFStringRef theString2, CFRange rangeToCompare, CFStringCompareFlags compareOptions, CFLocaleRef locale); |
Declaration | |
---|---|
From | CFComparisonResult CFStringCompare ( CFStringRef theString1, CFStringRef theString2, CFOptionFlags compareOptions); |
To | CFComparisonResult CFStringCompare ( CFStringRef theString1, CFStringRef theString2, CFStringCompareFlags compareOptions); |
Declaration | |
---|---|
From | CFRange CFStringFind ( CFStringRef theString, CFStringRef stringToFind, CFOptionFlags compareOptions); |
To | CFRange CFStringFind ( CFStringRef theString, CFStringRef stringToFind, CFStringCompareFlags compareOptions); |
Declaration | |
---|---|
From | CFIndex CFStringFindAndReplace ( CFMutableStringRef theString, CFStringRef stringToFind, CFStringRef replacementString, CFRange rangeToSearch, CFOptionFlags compareOptions); |
To | CFIndex CFStringFindAndReplace ( CFMutableStringRef theString, CFStringRef stringToFind, CFStringRef replacementString, CFRange rangeToSearch, CFStringCompareFlags compareOptions); |
Declaration | |
---|---|
From | Boolean CFStringFindWithOptionsAndLocale ( CFStringRef theString, CFStringRef stringToFind, CFRange rangeToSearch, CFOptionFlags searchOptions, CFLocaleRef locale, CFRange *result); |
To | Boolean CFStringFindWithOptionsAndLocale ( CFStringRef theString, CFStringRef stringToFind, CFRange rangeToSearch, CFStringCompareFlags searchOptions, CFLocaleRef locale, CFRange *result); |
Declaration | |
---|---|
From | Boolean CFStringFindCharacterFromSet ( CFStringRef theString, CFCharacterSetRef theSet, CFRange rangeToSearch, CFOptionFlags searchOptions, CFRange *result); |
To | Boolean CFStringFindCharacterFromSet ( CFStringRef theString, CFCharacterSetRef theSet, CFRange rangeToSearch, CFStringCompareFlags searchOptions, CFRange *result); |
Declaration | |
---|---|
From | CFArrayRef CFStringCreateArrayWithFindResults ( CFAllocatorRef alloc, CFStringRef theString, CFStringRef stringToFind, CFRange rangeToSearch, CFOptionFlags compareOptions); |
To | CFArrayRef CFStringCreateArrayWithFindResults ( CFAllocatorRef alloc, CFStringRef theString, CFStringRef stringToFind, CFRange rangeToSearch, CFStringCompareFlags compareOptions); |
Declaration | |
---|---|
From | Boolean CFStringFindWithOptions ( CFStringRef theString, CFStringRef stringToFind, CFRange rangeToSearch, CFOptionFlags searchOptions, CFRange *result); |
To | Boolean CFStringFindWithOptions ( CFStringRef theString, CFStringRef stringToFind, CFRange rangeToSearch, CFStringCompareFlags searchOptions, CFRange *result); |
Declaration | |
---|---|
From | CFComparisonResult CFStringCompareWithOptions ( CFStringRef theString1, CFStringRef theString2, CFRange rangeToCompare, CFOptionFlags compareOptions); |
To | CFComparisonResult CFStringCompareWithOptions ( CFStringRef theString1, CFStringRef theString2, CFRange rangeToCompare, CFStringCompareFlags compareOptions); |
Declaration | |
---|---|
From | size_t CGBitmapContextGetBitsPerPixel ( CGContextRef c); |
To | size_t CGBitmapContextGetBitsPerPixel ( CGContextRef context); |
Declaration | |
---|---|
From | void * CGBitmapContextGetData ( CGContextRef c); |
To | void * CGBitmapContextGetData ( CGContextRef context); |
Declaration | |
---|---|
From | size_t CGBitmapContextGetBytesPerRow ( CGContextRef c); |
To | size_t CGBitmapContextGetBytesPerRow ( CGContextRef context); |
Declaration | |
---|---|
From | CGBitmapInfo CGBitmapContextGetBitmapInfo ( CGContextRef c); |
To | CGBitmapInfo CGBitmapContextGetBitmapInfo ( CGContextRef context); |
Declaration | |
---|---|
From | size_t CGBitmapContextGetWidth ( CGContextRef c); |
To | size_t CGBitmapContextGetWidth ( CGContextRef context); |
Declaration | |
---|---|
From | CGContextRef CGBitmapContextCreate ( void *data, size_t width, size_t height, size_t bitsPerComponent, size_t bytesPerRow, CGColorSpaceRef colorspace, CGBitmapInfo bitmapInfo); |
To | CGContextRef CGBitmapContextCreate ( void *data, size_t width, size_t height, size_t bitsPerComponent, size_t bytesPerRow, CGColorSpaceRef space, CGBitmapInfo bitmapInfo); |
Declaration | |
---|---|
From | CGImageRef CGBitmapContextCreateImage ( CGContextRef c); |
To | CGImageRef CGBitmapContextCreateImage ( CGContextRef context); |
Declaration | |
---|---|
From | size_t CGBitmapContextGetHeight ( CGContextRef c); |
To | size_t CGBitmapContextGetHeight ( CGContextRef context); |
Declaration | |
---|---|
From | CGColorSpaceRef CGBitmapContextGetColorSpace ( CGContextRef c); |
To | CGColorSpaceRef CGBitmapContextGetColorSpace ( CGContextRef context); |
Declaration | |
---|---|
From | size_t CGBitmapContextGetBitsPerComponent ( CGContextRef c); |
To | size_t CGBitmapContextGetBitsPerComponent ( CGContextRef context); |
Declaration | |
---|---|
From | CGImageAlphaInfo CGBitmapContextGetAlphaInfo ( CGContextRef c); |
To | CGImageAlphaInfo CGBitmapContextGetAlphaInfo ( CGContextRef context); |
Declaration | |
---|---|
From | CGRect CGContextGetPathBoundingBox ( CGContextRef c); |
To | CGRect CGContextGetPathBoundingBox ( CGContextRef context); |
Declaration | |
---|---|
From | void CGContextSetShouldSmoothFonts ( CGContextRef c, bool shouldSmoothFonts); |
To | void CGContextSetShouldSmoothFonts ( CGContextRef context, bool shouldSmoothFonts); |
Declaration | |
---|---|
From | CGPoint CGContextGetPathCurrentPoint ( CGContextRef c); |
To | CGPoint CGContextGetPathCurrentPoint ( CGContextRef context); |
Declaration | |
---|---|
From | bool CGContextIsPathEmpty ( CGContextRef c); |
To | bool CGContextIsPathEmpty ( CGContextRef context); |
Declaration | |
---|---|
From | void CGContextSetShouldAntialias ( CGContextRef c, bool shouldAntialias); |
To | void CGContextSetShouldAntialias ( CGContextRef context, bool shouldAntialias); |
Deprecation | |
---|---|
From | none |
To | iOS 4.0 |
Deprecation | |
---|---|
From | none |
To | iOS 4.0 |
Declaration | |
---|---|
From | + (id)dataWithContentsOfURL:(NSURL *)url options:(NSUInteger)readOptionsMask error:(NSError **)errorPtr |
To | + (id)dataWithContentsOfURL:(NSURL *)url options:(NSDataReadingOptions)readOptionsMask error:(NSError **)errorPtr |
Declaration | |
---|---|
From | - (BOOL)writeToURL:(NSURL *)url options:(NSUInteger)writeOptionsMask error:(NSError **)errorPtr |
To | - (BOOL)writeToURL:(NSURL *)url options:(NSDataWritingOptions)writeOptionsMask error:(NSError **)errorPtr |
Declaration | |
---|---|
From | - (BOOL)writeToFile:(NSString *)path options:(NSUInteger)writeOptionsMask error:(NSError **)errorPtr |
To | - (BOOL)writeToFile:(NSString *)path options:(NSDataWritingOptions)writeOptionsMask error:(NSError **)errorPtr |
Deprecation | |
---|---|
From | none |
To | iOS 4.0 |
Declaration | |
---|---|
From | - (id)initWithContentsOfURL:(NSURL *)url options:(NSUInteger)readOptionsMask error:(NSError **)errorPtr |
To | - (id)initWithContentsOfURL:(NSURL *)url options:(NSDataReadingOptions)readOptionsMask error:(NSError **)errorPtr |
Declaration | |
---|---|
From | - (id)initWithContentsOfFile:(NSString *)path options:(NSUInteger)readOptionsMask error:(NSError **)errorPtr |
To | - (id)initWithContentsOfFile:(NSString *)path options:(NSDataReadingOptions)readOptionsMask error:(NSError **)errorPtr |
Declaration | |
---|---|
From | + (id)dataWithContentsOfFile:(NSString *)path options:(NSUInteger)readOptionsMask error:(NSError **)errorPtr |
To | + (id)dataWithContentsOfFile:(NSString *)path options:(NSDataReadingOptions)readOptionsMask error:(NSError **)errorPtr |
Deprecation | |
---|---|
From | none |
To | iOS 4.0 |
Declaration | |
---|---|
From | - (id)initWithTimeIntervalSinceNow:(NSTimeInterval)secsToBeAddedToNow |
To | - (id)initWithTimeIntervalSinceNow:(NSTimeInterval)secs |
Declaration | |
---|---|
From | - (BOOL)getObjectValue:(id *)obj forString:(NSString *)string range:(inout NSRange *)rangep error:(NSError **)error |
To | - (BOOL)getObjectValue:(out id *)obj forString:(NSString *)string range:(inout NSRange *)rangep error:(out NSError **)error |
Deprecation | |
---|---|
From | none |
To | iOS 2.0 |
Deprecation | |
---|---|
From | none |
To | iOS 2.0 |
Deprecation | |
---|---|
From | none |
To | iOS 2.0 |
Deprecation | |
---|---|
From | none |
To | iOS 2.0 |
Deprecation | |
---|---|
From | none |
To | iOS 2.0 |
Deprecation | |
---|---|
From | none |
To | iOS 2.0 |
Deprecation | |
---|---|
From | none |
To | iOS 2.0 |
Deprecation | |
---|---|
From | none |
To | iOS 2.0 |
Deprecation | |
---|---|
From | none |
To | iOS 2.0 |
Deprecation | |
---|---|
From | none |
To | iOS 2.0 |
Deprecation | |
---|---|
From | none |
To | iOS 2.0 |
Deprecation | |
---|---|
From | none |
To | iOS 2.0 |
Deprecation | |
---|---|
From | none |
To | iOS 2.0 |
Declaration | |
---|---|
From | - (BOOL)getObjectValue:(id *)obj forString:(NSString *)string errorDescription:(NSString **)error |
To | - (BOOL)getObjectValue:(out id *)obj forString:(NSString *)string errorDescription:(out NSString **)error |
Declaration | |
---|---|
From | - (id)delegate |
To | - (id < NSKeyedUnarchiverDelegate >)delegate |
Declaration | |
---|---|
From | - (void)setDelegate:(id)delegate |
To | - (void)setDelegate:(id < NSKeyedUnarchiverDelegate >)delegate |
Declaration | |
---|---|
From | - (id)delegate |
To | - (id < NSKeyedArchiverDelegate >)delegate |
Declaration | |
---|---|
From | - (void)setDelegate:(id)delegate |
To | - (void)setDelegate:(id < NSKeyedArchiverDelegate >)delegate |
Declaration | |
---|---|
From | - (void)setDelegate:(id)delegate |
To | - (void)setDelegate:(id < NSNetServiceDelegate >)delegate |
Declaration | |
---|---|
From | - (void)setDelegate:(id)delegate |
To | - (void)setDelegate:(id < NSNetServiceBrowserDelegate >)delegate |
Declaration | |
---|---|
From | - (id)delegate |
To | - (id < NSNetServiceBrowserDelegate >)delegate |
Deprecation | |
---|---|
From | none |
To | iOS 2.0 |
Declaration | |
---|---|
From | - (id)delegate |
To | - (id < NSNetServiceDelegate >)delegate |
Declaration | |
---|---|
From | - (id)delegate |
To | - (id < NSPortDelegate >)delegate |
Declaration | |
---|---|
From | - (void)setDelegate:(id)anId |
To | - (void)setDelegate:(id < NSPortDelegate >)anObject |
Declaration | |
---|---|
From | - (void)setDelegate:(id)delegate |
To | - (void)setDelegate:(id < NSStreamDelegate >)delegate |
Declaration | |
---|---|
From | - (id)delegate |
To | - (id < NSStreamDelegate >)delegate |
Declaration | |
---|---|
From | - (void)setDelegate:(id)delegate |
To | - (void)setDelegate:(id < NSXMLParserDelegate >)delegate |
Declaration | |
---|---|
From | - (id)delegate |
To | - (id < NSXMLParserDelegate >)delegate |
Header | |
---|---|
From | GameKitDefines.h |
To | GKDefines.h |
Header | |
---|---|
From | GameKitDefines.h |
To | GKDefines.h |
Header | |
---|---|
From | GKVoiceChatService.h |
To | GKPublicConstants.h |
Header | |
---|---|
From | GKVoiceChatService.h |
To | GKPublicConstants.h |
Header | |
---|---|
From | GKSession.h |
To | GKPublicConstants.h |
Header | |
---|---|
From | GKSession.h |
To | GKPublicConstants.h |
Header | |
---|---|
From | GKSession.h |
To | GKPublicConstants.h |
Header | |
---|---|
From | GKVoiceChatService.h |
To | GKPublicConstants.h |
Header | |
---|---|
From | GKVoiceChatService.h |
To | GKPublicConstants.h |
Header | |
---|---|
From | GKVoiceChatService.h |
To | GKPublicConstants.h |
Header | |
---|---|
From | GKVoiceChatService.h |
To | GKPublicConstants.h |
Header | |
---|---|
From | GKSession.h |
To | GKPublicConstants.h |
Header | |
---|---|
From | GKVoiceChatService.h |
To | GKPublicConstants.h |
Header | |
---|---|
From | GKSession.h |
To | GKPublicConstants.h |
Header | |
---|---|
From | GKVoiceChatService.h |
To | GKPublicConstants.h |
Header | |
---|---|
From | GKSession.h |
To | GKPublicConstants.h |
Header | |
---|---|
From | GKVoiceChatService.h |
To | GKPublicConstants.h |
Header | |
---|---|
From | GKVoiceChatService.h |
To | GKPublicConstants.h |
Header | |
---|---|
From | GKVoiceChatService.h |
To | GKPublicConstants.h |
Header | |
---|---|
From | GKSession.h |
To | GKPublicConstants.h |
Header | |
---|---|
From | GKSession.h |
To | GKPublicConstants.h |
Header | |
---|---|
From | GKSession.h |
To | GKPublicConstants.h |
Header | |
---|---|
From | GKVoiceChatService.h |
To | GKPublicConstants.h |
Header | |
---|---|
From | GKSession.h |
To | GKPublicConstants.h |
Header | |
---|---|
From | GKVoiceChatService.h |
To | GKPublicConstants.h |
Header | |
---|---|
From | GKVoiceChatService.h |
To | GKPublicConstants.h |
Header | |
---|---|
From | GKSession.h |
To | GKPublicConstants.h |
Header | |
---|---|
From | GKSession.h |
To | GKPublicConstants.h |
Header | |
---|---|
From | GKVoiceChatService.h |
To | GKPublicConstants.h |
Header | |
---|---|
From | GKVoiceChatService.h |
To | GKPublicConstants.h |
Header | |
---|---|
From | GKSession.h |
To | GKPublicConstants.h |
Header | |
---|---|
From | GKVoiceChatService.h |
To | GKPublicConstants.h |
Header | |
---|---|
From | GKVoiceChatService.h |
To | GKPublicConstants.h |
Header | |
---|---|
From | GKVoiceChatService.h |
To | GKPublicProtocols.h |
Header | |
---|---|
From | GKVoiceChatService.h |
To | GKPublicProtocols.h |
Header | |
---|---|
From | GKSession.h |
To | GKPublicProtocols.h |
Header | |
---|---|
From | GKVoiceChatService.h |
To | GKPublicProtocols.h |
Header | |
---|---|
From | GKSession.h |
To | GKPublicProtocols.h |
Header | |
---|---|
From | GKVoiceChatService.h |
To | GKPublicProtocols.h |
Header | |
---|---|
From | GKVoiceChatService.h |
To | GKPublicProtocols.h |
Header | |
---|---|
From | GKVoiceChatService.h |
To | GKPublicProtocols.h |
Header | |
---|---|
From | GKSession.h |
To | GKPublicProtocols.h |
Header | |
---|---|
From | GKVoiceChatService.h |
To | GKPublicProtocols.h |
Header | |
---|---|
From | GKSession.h |
To | GKPublicProtocols.h |
Header | |
---|---|
From | GKSession.h |
To | GKPublicProtocols.h |
Header | |
---|---|
From | GKVoiceChatService.h |
To | GKPublicProtocols.h |
Declaration | |
---|---|
From | void glBindFramebufferOES ( GLenum target, GLuint framebuffer); |
To | GLvoid glBindFramebufferOES ( GLenum target, GLuint framebuffer); |
Declaration | |
---|---|
From | void glGenRenderbuffersOES ( GLsizei n, GLuint *renderbuffers); |
To | GLvoid glGenRenderbuffersOES ( GLsizei n, GLuint *renderbuffers); |
Declaration | |
---|---|
From | void glFramebufferTexture2DOES ( GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level); |
To | GLvoid glFramebufferTexture2DOES ( GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level); |
Declaration | |
---|---|
From | void glBlendEquationSeparateOES ( GLenum modeRGB, GLenum modeAlpha); |
To | GLvoid glBlendEquationSeparateOES ( GLenum modeRGB, GLenum modeAlpha); |
Declaration | |
---|---|
From | void glBlendEquationOES ( GLenum mode); |
To | GLvoid glBlendEquationOES ( GLenum mode); |
Declaration | |
---|---|
From | void glDeleteFramebuffersOES ( GLsizei n, const GLuint *framebuffers); |
To | GLvoid glDeleteFramebuffersOES ( GLsizei n, const GLuint *framebuffers); |
Declaration | |
---|---|
From | void glBlendFuncSeparateOES ( GLenum srcRGB, GLenum dstRGB, GLenum srcAlpha, GLenum dstAlpha); |
To | GLvoid glBlendFuncSeparateOES ( GLenum srcRGB, GLenum dstRGB, GLenum srcAlpha, GLenum dstAlpha); |
Declaration | |
---|---|
From | void glGetFramebufferAttachmentParameterivOES ( GLenum target, GLenum attachment, GLenum pname, GLint *params); |
To | GLvoid glGetFramebufferAttachmentParameterivOES ( GLenum target, GLenum attachment, GLenum pname, GLint *params); |
Declaration | |
---|---|
From | void glRenderbufferStorageOES ( GLenum target, GLenum internalformat, GLsizei width, GLsizei height); |
To | GLvoid glRenderbufferStorageOES ( GLenum target, GLenum internalformat, GLsizei width, GLsizei height); |
Declaration | |
---|---|
From | void glDeleteRenderbuffersOES ( GLsizei n, const GLuint *renderbuffers); |
To | GLvoid glDeleteRenderbuffersOES ( GLsizei n, const GLuint *renderbuffers); |
Declaration | |
---|---|
From | void glBindRenderbufferOES ( GLenum target, GLuint renderbuffer); |
To | GLvoid glBindRenderbufferOES ( GLenum target, GLuint renderbuffer); |
Declaration | |
---|---|
From | void glGetBufferPointervOES ( GLenum target, GLenum pname, GLvoid **params); |
To | GLvoid glGetBufferPointervOES ( GLenum target, GLenum pname, GLvoid **params); |
Declaration | |
---|---|
From | void glGenFramebuffersOES ( GLsizei n, GLuint *framebuffers); |
To | GLvoid glGenFramebuffersOES ( GLsizei n, GLuint *framebuffers); |
Declaration | |
---|---|
From | void glFramebufferRenderbufferOES ( GLenum target, GLenum attachment, GLenum renderbuffertarget, GLuint renderbuffer); |
To | GLvoid glFramebufferRenderbufferOES ( GLenum target, GLenum attachment, GLenum renderbuffertarget, GLuint renderbuffer); |
Declaration | |
---|---|
From | void glGenerateMipmapOES ( GLenum target); |
To | GLvoid glGenerateMipmapOES ( GLenum target); |
Declaration | |
---|---|
From | void glGetRenderbufferParameterivOES ( GLenum target, GLenum pname, GLint *params); |
To | GLvoid glGetRenderbufferParameterivOES ( GLenum target, GLenum pname, GLint *params); |
Protocols | |
---|---|
From | NSCopying, CAAction, CAMediaTiming |
To | CAAction, CAMediaTiming, NSCoding, NSCopying |
Declaration | |
---|---|
From | OSStatus SecTrustCreateWithCertificates ( CFArrayRef certificates, CFTypeRef policies, SecTrustRef *trustRef); |
To | OSStatus SecTrustCreateWithCertificates ( CFTypeRef certificates, CFTypeRef policies, SecTrustRef *trustRef); |
Architectures | |
---|---|
From | Unknown |
To | arm |
Architectures | |
---|---|
From | Unknown |
To | arm |
Architectures | |
---|---|
From | Unknown |
To | arm |
Architectures | |
---|---|
From | Unknown |
To | arm |
Architectures | |
---|---|
From | Unknown |
To | arm |
Header | |
---|---|
From | UIAlert.h |
To | UIActionSheet.h |
Header | |
---|---|
From | UIAlert.h |
To | UIActionSheet.h |
Header | |
---|---|
From | UIAlert.h |
To | UIActionSheet.h |
Header | |
---|---|
From | UIAlert.h |
To | UIActionSheet.h |
Header | |
---|---|
From | UIAlert.h |
To | UIActionSheet.h |
Header | |
---|---|
From | UIAlert.h |
To | UIActionSheet.h |
Header | |
---|---|
From | UIAlert.h |
To | UIActionSheet.h |
Header | |
---|---|
From | UIAlert.h |
To | UIActionSheet.h |
Header | |
---|---|
From | UIAlert.h |
To | UIActionSheet.h |
Header | |
---|---|
From | UIAlert.h |
To | UIActionSheet.h |
Header | |
---|---|
From | UIAlert.h |
To | UIActionSheet.h |
Header | |
---|---|
From | UIAlert.h |
To | UIActionSheet.h |
Header | |
---|---|
From | UIAlert.h |
To | UIActionSheet.h |
Header | |
---|---|
From | UIAlert.h |
To | UIActionSheet.h |
Header | |
---|---|
From | UIAlert.h |
To | UIActionSheet.h |
Header | |
---|---|
From | UIAlert.h |
To | UIActionSheet.h |
Header | |
---|---|
From | UIAlert.h |
To | UIActionSheet.h |
Header | |
---|---|
From | UIAlert.h |
To | UIActionSheet.h |
Header | |
---|---|
From | UIAlert.h |
To | UIActionSheet.h |
Header | |
---|---|
From | UIAlert.h |
To | UIActionSheet.h |
Header | |
---|---|
From | UIAlert.h |
To | UIActionSheet.h |
Header | |
---|---|
From | UIAlert.h |
To | UIActionSheet.h |
Header | |
---|---|
From | UIAlert.h |
To | UIActionSheet.h |
Header | |
---|---|
From | UIAlert.h |
To | UIActionSheet.h |
Header | |
---|---|
From | UIAlert.h |
To | UIActionSheet.h |
Header | |
---|---|
From | UIAlert.h |
To | UIActionSheet.h |
Header | |
---|---|
From | UIAlert.h |
To | UIActionSheet.h |
Header | |
---|---|
From | UIAlert.h |
To | UIActionSheet.h |
Header | |
---|---|
From | UIAlert.h |
To | UIActionSheet.h |
Header | |
---|---|
From | UIAlert.h |
To | UIActionSheet.h |
Header | |
---|---|
From | UIAlert.h |
To | UIAlertView.h |
Header | |
---|---|
From | UIAlert.h |
To | UIAlertView.h |
Header | |
---|---|
From | UIAlert.h |
To | UIAlertView.h |
Header | |
---|---|
From | UIAlert.h |
To | UIAlertView.h |
Header | |
---|---|
From | UIAlert.h |
To | UIAlertView.h |
Header | |
---|---|
From | UIAlert.h |
To | UIAlertView.h |
Header | |
---|---|
From | UIAlert.h |
To | UIAlertView.h |
Header | |
---|---|
From | UIAlert.h |
To | UIAlertView.h |
Header | |
---|---|
From | UIAlert.h |
To | UIAlertView.h |
Header | |
---|---|
From | UIAlert.h |
To | UIAlertView.h |
Header | |
---|---|
From | UIAlert.h |
To | UIAlertView.h |
Header | |
---|---|
From | UIAlert.h |
To | UIAlertView.h |
Header | |
---|---|
From | UIAlert.h |
To | UIAlertView.h |
Header | |
---|---|
From | UIAlert.h |
To | UIAlertView.h |
Header | |
---|---|
From | UIAlert.h |
To | UIAlertView.h |
Header | |
---|---|
From | UIAlert.h |
To | UIAlertView.h |
Header | |
---|---|
From | UIAlert.h |
To | UIAlertView.h |
Header | |
---|---|
From | UIAlert.h |
To | UIAlertView.h |
Header | |
---|---|
From | UIAlert.h |
To | UIAlertView.h |
Header | |
---|---|
From | UIAlert.h |
To | UIAlertView.h |