你好,歡迎來到IOS教程網

 Ios教程網 >> IOS訊息 >> 關於IOS >> iOS 基礎類解析 – NSData

iOS 基礎類解析 – NSData

編輯:關於IOS

NSData Class Reference

Inherits from NSObject Conforms to NSCopying
NSMutableCopying
NSSecureCoding
NSObject (NSObject) Framework /System/Library/Frameworks/Foundation.framework Availability Available in iOS 2.0 and later. Declared in NSData.h Companion guides Binary Data Programming Guide
Property List Programming Guide Related sample code AdvancedURLConnections CryptoExercise EADemo MVCNetworking SimpleURLConnections

Overview

NSData and its mutable subclass NSMutableData provide data objects, object-oriented wrappers for byte buffers. Data objects let simple allocated buffers (that is, data with no embedded pointers) take on the behavior of Foundation objects.

NSData creates static data objects, and NSMutableData creates dynamic data objects. NSData and NSMutableData are typically used for data storage and are also useful in Distributed Objects applications, where data contained in data objects can be copied or moved between applications.

The size of the data is subject to a theoretical limit of about 8 ExaBytes (in practice, the limit should not be a factor).

NSData is “toll-free bridged” with its Core Foundation counterpart, CFDataRef. See “Toll-Free Bridging” for more information on toll-free bridging.

Tasks

Creating Data Objects

  • + data
  • + dataWithBytes:length:
  • + dataWithBytesNoCopy:length:
  • + dataWithBytesNoCopy:length:freeWhenDone:
  • + dataWithContentsOfFile:
  • + dataWithContentsOfFile:options:error:
  • + dataWithContentsOfURL:
  • + dataWithContentsOfURL:options:error:
  • + dataWithData:
  • C initWithBase64EncodedData:options:
  • C initWithBase64EncodedString:options:
  • C initWithBytes:length:
  • C initWithBytesNoCopy:length:
  • C initWithBytesNoCopy:length:deallocator:
  • C initWithBytesNoCopy:length:freeWhenDone:
  • C initWithContentsOfFile:
  • C initWithContentsOfFile:options:error:
  • C initWithContentsOfURL:
  • C initWithContentsOfURL:options:error:
  • C initWithData:
  • C initWithBase64Encoding: Deprecated in iOS 7.0
  • + dataWithContentsOfMappedFile: Deprecated in iOS 5.0
  • C initWithContentsOfMappedFile: Deprecated in iOS 5.0

    Accessing Data

    • C bytes
    • C description
    • C enumerateByteRangesUsingBlock:
    • C getBytes:length:
    • C getBytes:range:
    • C subdataWithRange:
    • C rangeOfData:options:range:
    • C getBytes: Deprecated in iOS 4.0

      Base-64 Encoding

      • C base64EncodedDataWithOptions:
      • C base64EncodedStringWithOptions:
      • C base64Encoding Deprecated in iOS 7.0

        Testing Data

        • C isEqualToData:
        • C length

          Storing Data

          • C writeToFile:atomically:
          • C writeToFile:options:error:
          • C writeToURL:atomically:
          • C writeToURL:options:error:


            Copyright ? 2014 Apple Inc. All Rights Reserved. Terms of Use | Privacy Policy | Updated: 2014-02-11

  1. 上一頁:
  2. 下一頁:
蘋果刷機越獄教程| IOS教程問題解答| IOS技巧綜合| IOS7技巧| IOS8教程
Copyright © Ios教程網 All Rights Reserved