3atv精品不卡视频,97人人超碰国产精品最新,中文字幕av一区二区三区人妻少妇,久久久精品波多野结衣,日韩一区二区三区精品

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

iOS 苹果官方Demo

發(fā)布時間:2024/1/8 编程问答 23 豆豆
生活随笔 收集整理的這篇文章主要介紹了 iOS 苹果官方Demo 小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.

GitHub 文章鏈接地址, 歡迎Star+Fork

Mirror of Apple's iOS samples

This repository mirrors?Apple's iOS samples.

Name Topic Framework Description
ABUIGroups? Data Management (Contact Data) AddressBook ABUIGroups shows how to check and request access to a user’s address book database. It also demonstrates how to retrieve, add, and remove group records using AddressBook APIs. It displays groups organized by their source in the address book.
AccelerometerGraph? Data Management (Device Information) UIKit AccelerometerGraph sample application graphs the motion of the device. It demonstrates how to use the UIAccelerometer class and how to use Quartz2D and Core Animation to provide a high performance graph view. It also demonstrates a low-pass filter that you can use to isolate the effects of gravity, and a high-pass filter that you can use to remove the effects of gravity.
AdaptivePhotos: An Adaptive Application? User Experience UIKit This sample shows how to use new APIs introduced in iOS 8 to make your application work great on all devices and orientations. It uses size classes, traits, and additions to view controllers to make an app that works great at any size and configuration.
AddMusic? Audio & Video (Audio) MediaPlayer AddMusic demonstrates basic use of iPod library access, part of the Media Player framework. You use iPod library access to play songs, audio books, and audio podcasts that are synced from a user's desktop iTunes library. This sample uses the Media Player framework's built-in user interface for choosing music. AddMusic also demonstrates how to mix application audio with iPod library audio. The sample includes code for configuring application audio behavior using the AVAudioSession class and Audio Session Services.
AdvancedURLConnections? Networking & Internet (Protocol Streams) Foundation This sample demonstrates various advanced networking techniques with NSURLConnection. Specifically, it demonstrates how to respond to authentication challenges, how to modify the default server trust evaluation (for example, to support a server with a self-signed certificate), and how to provide client identities.
Adventure: Building a SpriteKit Game Using Swift? Languages & Utilities (Swift) SpriteKit This sample shows how to build a simple 2D game for iOS and OS X using SpriteKit and Swift.
AirDrop Examples? Networking & Internet ? "AirDropSample" demonstrates three use cases for incorporating AirDrop into an app.
AirLocate: Using CoreLocation to monitor, range, and configure your device as an iBeacon? ? CoreLocation "AirLocate" demonstrates CoreLocation fencing and ranging of iBeacons, BTLE devices enabled to aide iOS devices in determining a users proximity to a location rather than their position. Obtaining a users proximity with iBeacons is ideal in more intimate locations such as indoors where other positioning methods either do not work, or do not give the desired level of accuracy an iBeacon can provide. In addition to demonstrating how to use CoreLocation's CLLocationManager APIs to monitor and range for these CLBeaconRegions, AirLocate also provides an example of how to calibrate and configure an iOS device as a beacon.
Alternate Views? User Experience (Windows & Views) UIKit This sample demonstrates how to implement alternate or distinguishing views for particular device orientations. Doing so can be useful if your app displays different content between orientations or if your app uses vastly different layouts between orientations which cannot be reconciled by auto layout or programatic layout alone.
Application Icons and Launch Images for iOS? General UIKit Every app is required to include an app icon. It is recommended that apps also provide icons for: Spotlight, the Settings app, and when creating an Ad Hoc build and adding it to iTunes. See QA1686: App Icons on iPad and iPhone, for a complete listing of icons required for iPhone, iPad, and Universal apps?https://developer.apple.com/library/ios/qa/qa1686/_index.html.
AppPrefs: Storing and Retrieving User Preferences? Data Management (Preference Settings) UIKit Demonstrates how to display your app's user configurable options (preferences) in the "Settings" system application. A settings bundle, included in your application’s bundle directory, contains the information needed by the Settings application to display your preferences and make it possible for the user to modify them. The Settings application saves any configured values in the defaults database so that your application can retrieve them at runtime. This sample also shows how to launch the Settings app from your application and how to dynamically update your application's UI when its settings are changed while the app is in the background.
AQOfflineRenderTest? Audio & Video (Audio) AudioToolbox Demonstrates using Audio Queue offline render functionality and the AudioQueueOfflineRender API. The sample produces LPCM output buffers from an ALAC encoded source which are then written to a .caf file. The output.caf file is then played back confirming the offline functionality worked as expected. All the code demonstrating the Audio Queue is in a single file called aqofflinerender.cpp.
Audio Converter File Convert Test? Audio & Video (Audio) AudioToolbox Demonstrates using the Audio Converter APIs to convert from a PCM audio format to a compressed format including AAC.
Audio Mixer (MixerHost)? Audio & Video (Audio) AudioUnit MixerHost demonstrates how to use the Multichannel Mixer audio unit in an iOS application. It also demonstrates how to use a render callback function to provide audio to an audio unit input bus. In this sample, the audio delivered by the callback comes from two short loops read from disk. You could use a similar callback, however, to synthesize sounds to feed into a mixer unit. This sample is described in Audio Unit Hosting Guide for iOS.
Audio UI Sounds (SysSound)? Audio & Video (Audio) AudioToolbox Demonstrates use of System Sound Services (AudioToolbox/AudioServices.h) to play alerts and user-interface sound effects, and to invoke vibration.
aurioTouch? Audio & Video (Audio) AudioUnit aurioTouch demonstrates use of the remote i/o audio unit for handling audio input and output. The application can display the input audio in one of the forms, a regular time domain waveform, a frequency domain waveform (computed by performing a fast fourier transform on the incoming signal), and a sonogram view (a view displaying the frequency content of a signal over time, with the color signaling relative power, the y axis being frequency and the x as time). Tap the sonogram button to switch to a sonogram view, tap anywhere on the screen to return to the oscilloscope. Tap the FFT button to perform and display the input data after an FFT transform. Pinch in the oscilloscope view to expand and contract the scale for the x axis.
AVARLDelegateDemo? Audio & Video AVFoundation The sample code depicts three different use cases of AVAssetResourceLoaderDelegate (for Identity encryption use case scenarios) for HLS (HTTP Live streaming): - Redirect handler (redirection for the HTTP live streaming media files) - Fetching Encryption keys for the HTTP live streaming media (segments) - Custom play list generation (index file) for the HTTP live streaming.
AVCam for iOS? Audio & Video AVFoundation AVCam demonstrates how to use the AV Foundation capture APIs for recording movies and taking still images. There is a record button for recording movies, a camera button for switching between front and back cameras (on supported devices), and a still button for taking still images. It runs only on an actual device, either an iPad or iPhone, and cannot be run in the simulator.
AVCamManual: Using the Manual Capture API? ? AVFoundation AVCamManual adds manual controls for focus, exposure, and white balance to the AVCam sample application.
AVCaptureAudioDataOutput To AudioUnit iOS? Audio & Video (Audio) AVFoundation AVCaptureToAudioUnit for iOS demonstrates how to use the CMSampleBufferRefs vended by AVFoundation's capture AVCaptureAudioDataOutput object with various CoreAudio APIs. The application uses a AVCaptureSession with a AVCaptureAudioDataOutput to capture audio from the default input, applies an effect to that audio using a simple delay effect AudioUnit and writes the modified audio to a file using the CoreAudio ExtAudioFile API. It also demonstrates using and AUGraph containing an AUConverter to convert the AVCaptureAudioDataOutput provided data format into a suitable format for the delay effect.
AVCompositionDebugVieweriOS? Audio & Video AVFoundation This sample application has an AVCompositionDebugView which presents a visual description of the underlying AVComposition, AVVideoComposition and AVAudioMix objects which form the composition made using two clips, adding a cross fade transition in between and audio ramps to the two audio tracks. The visualization provided by the sample can be used as a debugging tool to discover issues with an incorrect composition/video composition. For example: a break in video composition would render black frames to screen, which can easily be detected using the visualization in the sample.
AVCustomEdit? Audio & Video AVFoundation The sample demonstrates the use of custom compositors to add transitions to an AVMutableComposition. It implements the AVVideoCompositing and AVVideoCompositionInstruction protocols to have access to individual source frames, which are then be rendered using OpenGL off screen rendering.
AVLoupe? Audio & Video (Video) AVFoundation This sample demonstrates how to use multiple synchronized AVPlayerLayer instances, associated with a single AVPlayer, to efficiently produce non-trivial presentation of timed visual media. Using just one AVPlayer this sample demonstrates how you can display the same video in multiple AVPlayerLayers simultaneously. With minimal code you can create very customized and creative forms of video display. As an example, this sample demonstrates an interactive loupe, or magnifying glass, for video playback. This is similar to features that you might have used in iPhoto and Aperture.
AVMovieExporter? Audio & Video (Video) AVFoundation This universal sample application reads movie files from the Asset Library and Media Library then exports them to a new media file using user defined settings. The user can adjust the exported file in the following ways:
AVPlayerDemo? Audio & Video (Video) AVFoundation Uses AVPlayer to play videos from the iPod Library, Camera Roll, or via iTunes File Sharing. Also displays metadata.
AVSimpleEditoriOS? Audio & Video AVFoundation AVSimpleEditor is a simple AVFoundation based movie editing application which exercises the APIs of AVVideoComposition, AVAudioMix and demonstrates how they can be used for simple video editing tasks. It also demonstrates how they interact with playback (AVPlayerItem) and export (AVAssetExportSession). The application performs trim, rotate, crop, add music, add watermark and export. This sample is ARC-enabled.
AVTimedAnnotationWriter: Using Custom Annotation Metadata for Movie Writing and Playback? ? AVFoundation Demonstrates how to use the AVAssetWriterInputMetadataAdaptor API to write circle annotation metadata during video playback. The captured movie file has video, audio and metadata track. The metadata track contains circle annotation which is vended during playback using AVPlayerItemMetadataOutput.
avTouch? Audio & Video (Audio) AVFoundation The avTouch sample demonstrates use of the AVAudioPlayer class for basic audio playback.
Bananas: A simple SceneKit platforming game? Graphics & Animation (3D Drawing) SceneKit This sample shows how to build a basic game using Scene Kit, demonstrating physics, rendering techniques, lighting, actions and animation.
Blurring and Tinting an Image? Graphics & Animation UIKit UIImageEffects demonstrates how to create and apply blur and tint effects to an image using the vImage, Quartz, and UIKit frameworks. The vImage framework is suited for high-performance image processing. Using vImage, your app gets all the benefits of vector processing without the need for you to write vectorized code.
BonjourWeb? Networking & Internet (Services & Discovery) Foundation This application illustrates the fundamentals of browsing for network services using Bonjour. The BonjourBrowser hierarchically displays Bonjour domains and services as table views in a navigation controller. The contents of the table views are discovered and updated dynamically using NSNetServiceBrowser objects. Tapping an item in the services table causes the corresponding NSNetService object to be resolved asynchronously. When that resolution completes, a delegate method is called which constructs a URL and opens it in Safari.
BracketStripes: Using the Bracketed Capture API? ? AVFoundation BracketStripes This sample illustrates the use of still image bracketing APIs available in AVFoundation. Two types of brackets are demonstrated: 1. Auto-exposure brackets with exposure target bias, and 2. Manual exposure with control over ISO and exposure duration. As each of the bracketed frames are captured in real-time, they are "striped" into a destination image buffer and later shown in a modal image viewer so each of the captured frames can be compared side-by-side.
Breadcrumb? User Experience MapKit Demonstrates how to draw a path using the Map Kit overlay, MKOverlayView, that follows and tracks the user's current location. The included CrumbPath and CrumbPathView overlay and overlay view classes can be used for any path of points that are expected to change over time. It also demonstrates what is needed to track the user's location as a background process.
BTLE Central Peripheral Transfer? ? CoreBluetooth This sample shows how to transfer data from an iOS device in CoreBluetooth Peripheral Mode to another in Central Mode, by using a CBCharacteristic on the Peripheral side that changes its value. The value change is automatically picked up on the Central side.
Checking and Requesting Access to Data Classes in Privacy Settings? Security ? "PrivacyPrompts" shows how to check and request access to data classes such as Location, Contacts, and social media in Privacy Settings on iOS.
CloudCaptions: How integrate CloudKit into your application? ? CloudKit This sample shows how to use CloudKit to upload and retrieve CKRecords and associated assets. In this example, there are two record types, an image record type and a post record type. Users are able to upload their own photos or select an image already found in an image record type. This example also uses an NSPredicate in its CKQueries to filter results based on tags.
CloudKitAtlas: An Introduction to CloudKit? ? CloudKit CloudKitAtlas is a sample intended as a quick introduction to CloudKit. It teaches you how to use discoverability to get the first name and last name of the user logged into iCloud. It can add a CKRecord with a location and query for CKRecords near a location. You can upload and retrieve images as CKAssets. It also shows how to use CKReferences with CKReferenceActionDeleteSelf so the child records are deleted when the parent record is deleted. Finally, it also shows how to use CKSubscription to get push notifications when a new item is added for a record type.
Collection View Transition? User Experience (Windows & Views) UIKit This sample illustrates how to create a custom transition when navigating between two collection views in a navigation hierarchy managed by a navigation controller. The transition can be interrupted and reversed. It uses a subclass of UICollectionViewTransitionLayout to help in the transition of the cell positions based on gesture position.
CollectionView-Simple? ? UIKit Demonstrates how to use UICollectionView, a way to present ordered data to users in a grid-like fashion. With a collection view object, you are able to define the presentation and arrangement of embedded views. The collection view class works closely with an accompanying layout object to define the placement of individual data items. In this example UIKit provides a standard flow-based layout object that you can use to implement multi-column grids containing items of a standard size.
Concurrent operations using Core Data? User Experience (Tables) CoreData Demonstrates how to use Core Data in a multi-threaded environment, following the first recommended pattern mentioned in the Core Data Programming Guide.
Core Audio Utility Classes? Audio & Video (Audio) CoreAudio The "CoreAudio" folder contains the Public Utility sources (PublicUtility folder) as well as base classes required for codec and audio unit development. These utility classes are used by various Apple Core Audio sample project and extend or wrap Core Audio API's.
Core Data Transformable Attributes? Data Management CoreData This sample illustrates a Core Data application that uses more than one entity and uses transformable attributes. It also shows inferred migration of the persistent store.
Core Image Filters with Photos and Video for iOS? Graphics & Animation (2D Drawing) CoreImage The CIFunHouse project shows how to apply Core Image built in and custom CIFilters to photos and video. The application presents view controllers for adding photo and video sources, choosing CIFilters from a list, and making live adjustments to filter parameters. The project also contains code for custom CIFilter subclasses for effect such as Sobel edge detection, old-style-film, and fake-depth-of-field looks. The code also demonstrates how to save a filtered video stream to the ALAssetsLibrary while simultaneously previewing the video on the display.
CoreBluetooth Temperature Sensor? ? CoreBluetooth A simple iOS iPhone application that demonstrates how to use the CoreBluetooth Framework to connect to a Bluetooth LE peripheral and read, write and be notified of changes to the characteristics of the peripheral.
CoreDataBooks? Data Management CoreData This sample illustrates a number of aspects of working with the Core Data framework with an iOS application:
CoreTextPageViewer? User Experience (Windows & Views) CoreText This sample shows how to use Core Text to display large bodies of text, text with mixed styles, and text with special style or layout requirements, such as use of custom fonts. A version of this sample was used in the "Advanced Text Handling for iPhone OS" WWDC 2010 Session.
CryptoExercise? Security Security This sample demonstrates the use of the two main Cryptographic API sets on the iPhone OS SDK. Asymmetric Key Encryption and random nonce generation is handled through the Security framework API set, whereas, Symmetric Key Encryption and Digest generation is handled by the CommonCrypto API set. The CryptoExercise sample brings both of these APIs together through a network service, discoverable via Bonjour, that performs a "dummy" cryptographic protocol between devices found on the same subnet.
CurrentAddress? User Experience MapKit Demonstrates basic use of MapKit, displaying a map view and setting its region to current location.
Custom Animatable Property? Graphics & Animation (Animation) CoreGraphics Shows how to leverage Core Animation’s timing and rendering callbacks to implement custom animatable properties for CALayer subclasses. This technique is supported whether your CALayer subclass belongs to a UIView or is standalone. Both explicit and implicit animation triggers are demonstrated, as well as basic and keyframe animation types.
Custom Section Titles with NSFetchedResultsController? Data Management CoreData "DateSectionTitles" shows how to create section information for NSFetchedResultsController using dates.
CustomContentAccessibility? User Experience UIKit This sample, previously known as WWDCMaps, shows you how to support accessibility in a custom drawing UIView and UIControl, demonstrates how to create an accessibility element for each map item, and implement UIAccessibilityContainer protocol in the container view to interact with iOS accessibility system. The Guided Access Restriction API, which is newly introduced in iOS 7 for restricting functions when Guided Access enabled, is also demonstrated in this sample.
CustomHTTPProtocol? Networking & Internet Foundation CustomHTTPProtocol shows how to use an NSURLProtocol subclass to intercept the NSURLConnections made by a high-level subsystem that does not otherwise expose its network connections. In this specific case, it intercepts the HTTPS requests made by a web view and overrides server trust evaluation, allowing you to browse a site whose certificate is not trusted by default.
Customizing UINavigationBar? User Experience (Controls) UIKit NavBar demonstrates using UINavigationController and UIViewController classes together as building blocks to your application's user interface. Use it as a reference when starting the development of your new application. The various pages in this sample exhibit different ways of how to modify the navigation bar directly, using the appearance proxy, and by modifying the view controller's UINavigationItem. Among the levels of customization are varying appearance styles, and applying custom left and right buttons known as UIBarButtonItems.
DateCell? User Experience (Tables) UIKit Demonstrates formatted display of date objects in table cells and use of UIDatePicker to edit those values.
DocInteraction? Data Management (File Management) UIKit Demonstrates how to use UIDocumentInteractionController to obtain information about documents and how to preview them. There are two ways to preview documents: one is to use UIDocumentInteractionController's preview API, the other is directly use QLPreviewController. This sample also demonstrates the use of UIFileSharingEnabled feature so you can upload documents to the application using iTunes and then to preview them. With the help of "kqueue" kernel event notifications, the sample monitors the contents of the Documents folder.
DownloadFont? ? CoreText Demonstrates how to download fonts on demand on iOS 6 and later.
EADemo? Data Management (Device Information) ExternalAccessory The sample can be used with any Made For iPod (MFI) device designed for use with the External Accessory Framework. The application will display an External Accessory attached device in the Accessories window, provide information registered by the MFI device, and provides methods to send and receive data to the device.
Enumeration Sample? ? Foundation EnumerationSample is a command line project that demonstrates how to implement a class that supports block-based enumeration, fast enumeration, enumeration using NSEnumerator, and subscripting. While provided as a OS X application, the techniques demonstrated by this sample are fully applicable to iOS development.
Example app using Photos framework? ? Photos A basic Photos-like app which introduces the Photos framework. - List albums, folders and moments - Display the contents of the moments, or a single album - Display the content of a single photo or video (and allow playback in the case of a video) - Allow the following actions:??simple single-click edit of a photo??creating an album and adding assets to it??re-ordering of assets in an album??removing assets from an album??deleting assets and albums??(un)hiding an asset from moments * favoriting an asset
Extended Audio File Conversion Test? Audio & Video (Audio) AudioToolbox Demonstrates using ExtAudioFile API to convert from one audio format and file type to another.
Fit: Store and Retrieve HealthKit Data? ? HealthKit Fit is a sample intended as a quick introduction to HealthKit. It teaches you everything from writing data into HealthKit to reading data from HealthKit. This information may have been entered into the store by some other app; e.g. a user's birthday may have been entered into Health, and a user's weight by some popular weight tracker app. Fit shows examples of using queries to retrieve information from HealthKit using sample queries and statistics queries. Fit gives you a quick introduction into using the new Foundation classes NSLengthFormatter, NSMassFormatter, and NSEnergyFormatter.
Footprint: Indoor Positioning with Core Location? ? CoreLocation Use Core Location to take a Latitude/Longitude position and project it onto a flat floorplan. Demonstrates how to do the conversion from the Geographic coordinates system (Latitude/Longitude) to the floorplan's image coordinate system (x,y).
GenericKeychain? Security Security This sample shows how to add, query for, remove, and update a keychain item of generic class type. Also demonstrates the use of shared keychain items. All classes exhibit very similar behavior so the included examples will scale to the other classes of Keychain Item: Internet Password, Certificate, Key, and Identity.
GeocoderDemo? Data Management CoreLocation This sample application demonstrates using a CLGeocoder instance to perform forward and reverse geocoding on strings and dictionaries. The application also includes an example distance calculator that will display the distance between two placemarks.
Get Battery Status? Data Management (Device Information) UIKit Demonstrates the use of the battery status properties and notifications provided via the iOS SDK.
GKAchievements? General GameKit Abstract: Provide an example of how to successfully submit achievements and store them when submission fails.
GKAuthentication? General GameKit An example of how to successfully authenticate using GameKit.
GKLeaderboards? General GameKit GKLeaderboard is a sample application that shows how to correctly submit a score and view them using GKLeaderboardViewController.
GKTapper? ? GameKit GKTapper is a sample application that shows how to support GameCenter Leaderboards and Achievements. It also demonstrates using GKLeaderboardViewController and GKAchievementViewController to display this data.
GLAirplay? User Experience OpenGLES Demonstrates how to provide a richer experience to your users when they are using Airplay by displaying your UI on the iPhone/iPad and your app/game contents on the second display.
GLCameraRipple? Audio & Video (Video) AVFoundation This sample demonstrates how to use the AVFoundation framework to capture YUV frames from the camera and process them using shaders in OpenGL ES 2.0. CVOpenGLESTextureCache, which is new to iOS 5.0, is used to provide optimal performance when using the AVCaptureOutput as an OpenGL texture. In addition, a ripple effect is applied by modifying the texture coordinates of a densely tessellated quad.
GLEssentials? Graphics & Animation (3D Drawing) OpenGLES This sample provides examples of some essential techniques for using the OpenGL and OpenGL ES API. It includes usages of Vertex Buffer Objects (VBOs), Vertex Array Objects (VAOs), Framebuffer Objects (FBO), and GLSL Program Objects. It creates a VAO and VBOs from model data loaded in. It then creates a texture for the model from image data and GLSL shaders from source also loaded in. Finally, it creates an FBO and texture to render a reflection of the model. It uses an environment mapping GLSL program to apply the reflection texture to a plane.
GLGravity? Graphics & Animation (3D Drawing) OpenGLES The GLGravity sample application demonstrates how to use the UIAccelerometer class in combination with OpenGL rendering. It shows how to extract the gravity vector from the accelerometer values using a basic low-pass filter, and how to build an OpenGL transformation matrix from it.
GLImageProcessing? Graphics & Animation (3D Drawing) OpenGLES The GLImageProcessing sample application demonstrates how to implement simple image processing filters (Brightness, Contrast, Saturation, Hue rotation, Sharpness) using OpenGL ES1.1. The sample also shows how to create simple procedural button icons using CoreGraphics.
GLPaint? Graphics & Animation (3D Drawing) OpenGLES The GLPaint sample application demonstrates how to support single finger painting using OpenGL ES. This sample also shows how to detect a "shake" motion of the device. By looking at the code you'll see how to set up an OpenGL ES view and use it for rendering painting strokes. The application creates a brush texture from an image by first drawing the image into a Core Graphics bitmap context. It then uses the bitmap data for the texture.
GLTextureAtlas? Graphics & Animation (3D Drawing) OpenGLES This sample demonstrates how to use a texture atlas to draw multiple objects with different textures simultaneously using OpenGL ES. The application uses a texture atlas in the PVR format. By adding in degenerated triangles, and compute 3D transformations ourselves using matrices, we are able to collapse all the draw calls into one.
Handling Touches Using Responder Methods and Gesture Recognizers? Data Management (Event Handling) UIKit This sample contains two applications that demonstrate how to handle touches, including multiple touches that move multiple objects: "Touches_Responder" demonstrates how to handle touches using UIResponder's: touches began, touches moved, and touches ended methods. "Touches_GestureRecognizers" demonstrates how to use UIGestureRecognizer objects to handle touch events.
HazardMap? ? MapKit Demonstrates how to create a custom Map Kit overlay to display USGS earthquake hazard data. It shows how to create a custom Map Kit overlay and corresponding view to display USGS earthquake hazard data on top of an MKMapView.
HeadsUpUI? User Experience (Windows & Views) UIKit Demonstrates how to implement a Heads Up or HUD-like user interface over the app's primary view controller. This essentially mimics the behavior of the MPMoviePlayerController's hovering controls for controlling movie playback. Developers can refer to this sample for best practices in how to implement this translucent kind of interface complete with animation and timer support.
HelloGoodbye: Using the Accessibility API to Widen Your User Base? ? UIKit This project shows you how to use the Accessibility API to widen your user base. It demonstrates how you can adjust your user interface when a user has Bold Text, Reduce Transparency, Darken Colors, or Reduce Motion enabled. It also contains examples of API you can implement to allow a VoiceOver or Switch Control user to interact with your app.
HelloWorld? User Experience UIKit HelloWorld demonstrates how to use a keyboard to enter text into a text field and how to display the text in a label.
HomeKit Catalog? General HomeKit Demonstrates how to use the HomeKit API, and provides a sample UI for creating homes, controlling accessories, grouping accessories into rooms and zones, creating action sets to tie together multiple actions, creating timer triggers to fire action sets at specific times, and creating service groups to group services into contexts.
iAdInterstitialSuite? ? iAd iAdInterstitialSuite contains two applications that demonstrate the usage of the ADInterstitialAd introduced in iOS 4.3.
iAdSuite? ? iAd iAdSuite is a set of samples demonstrating how to manage an ADBannerView in many common scenarios, each scenario demonstrated in a particular sample application.
iAdSuite with Storyboards? User Experience iAd iAdSuite is a set of samples demonstrating how to manage an ADBannerView in many common scenarios, each scenario demonstrated in a particular sample application.
Inter-App Audio Examples? Audio & Video (Audio) AudioUnit This suite of samples includes three projects that together illustrate Inter-App Audio feature.
Internationalization and Localization for iOS? Data Management (Strings, Text, & Fonts) UIKit Drawing from the existing Cocoa Internationalization Mountains sample, this sample shows how to integrate, design and programmatically access localized resources and data in an iOS application. This sample uses multiple localized views, localized formatted strings, localized application data, localized info.plist strings, and a localized application preferences settings bundle. The sample is localized in three languages: English, French, and Traditional Chinese.
iPhoneCoreDataRecipes? Data Management CoreData This sample shows how you can use view controllers, table views, and Core Data in an iPhone application.
iPhoneMultichannelMixerTest? Audio & Video (Audio) AudioUnit Demonstrates how to build an Audio Unit Graph connecting a Multichannel Mixer instance to the RemoteIO unit. Two input busses are created each with input volume controls. An overall mixer output volume control is also provided and each bus may be enabled or disabled.
KeyboardAccessory? User Experience UIKit Shows how to use a keyboard accessory view.
KeychainTouchID: Using Touch ID with Keychain and LocalAuthentication? ? LocalAuthentication KeychainTouchID shows how to store Touch ID protected items to the keychain and how to query for the items with custom message prompts. It also shows how to use the new keychain item accessibility class which invalidates items when the passcode is removed. It also shows how to use LocalAuthentication to invoke Touch ID verification without involving the keychain.
KMLViewer? ? MapKit Demonstrates how to display KML files on top of a MKMapView. It shows how to use MapKit's Annotations and Overlays to display KML files on top of an MKMapView.
Large Image Downsizing? Graphics & Animation CoreGraphics This code sample demonstrates a way to support displaying very large images in limited memory environments by turning a large image on disk into a smaller image in memory. This is useful in situations where the original image is too large to fit into memory as required for it to be displayed.
LaunchMe? Data Management (Event Handling) UIKit The LaunchMe sample application demonstrates how to implement a custom URL scheme to allow other applications to interact with your application. It registers the "launchme" URL scheme, of which URLs contain an HTML color code (e.g. #FF0000 or #F00). The sample shows how to handle an incoming URL request by overriding -application:openURL:sourceApplication:annotation: to properly parse and extract information from the requested URL before updating the user interface.
LazyTableImages? User Experience (Tables) UIKit This sample demonstrates a multi-stage approach to loading and displaying a UITableView. It begins by loading the relevant text from an RSS feed so the table can load as quickly as possible, and then downloads the images for each row asynchronously so the UI is more responsive.
ListAdder? Data Management Foundation This sample demonstrates the technique of thread confinement using NSOperation. It was written to support TN2109 "Simple and Reliable Threading with NSOperation".
Lister (for Apple Watch, iOS, and OS X)? User Experience ? Lister is a document based productivity app for iOS 8, OS X 10.10, and Apple Watch. It demonstrates Apple Watch integration; using iCloud to share content between multiple app targets and platforms; using App Groups to share local content between apps and extensions on a single device; creating App Extensions to provide Today Widgets and Watch Apps; and defining a framework to share common code between multiple targets. The Lister sample app is provided in both Swift and Objective-C.
LocateMe? Data Management (Device Information) CoreLocation This demonstrates the two primary use cases for the Core Location Framework: getting the user's location and tracking changes to the user's location.
LookInside: Presentation Controllers, Adaptivity, and Custom Animator Objects? ? UIKit This example shows how to use a custom presentation controller to create a custom view controller presentation. It provides a transitioning delegate to the view controller, which vends a presentation controller and animator object.
Managed App Configuration? General ? "ManagedAppConfig" demonstrates how to implement managed app configuration and feedback support in an iOS application. This functionality allows a Mobile Device Management (MDM) server to push down a dictionary into the managed app's NSUserDefaults for the purposes of remotely configuring settings. Also, feedback (such as critical errors) can be written by the app into NSUserDefaults which can then be queried by an MDM server. This is a powerful mechanism enterprise and educational institutions can use to remotely configure managed applications from a centralized MDM server.
MapCallouts? User Experience MapKit Demonstrates the use of the MapKit framework, displaying a map view with custom MKAnnotations each with custom callouts or custom MKAnnotationViews. An annotation object on a map is any object that conforms to the MKAnnotation protocol and is displayed on the screen as a MKAnnotationView. Through the use of the MKAnnotation protocol and MKAnnotationView, this application shows how you can extend annotations with custom strings and left/right calloutAccessoryViews.
MapSearch? Data Management MapKit Demonstrates how to programmatically search for map-based addresses and points of interest using the MKLocalSearch class. It initiates a search for map-based content using a natural language string. A user can type "coffee", press search and it will find all the coffee places nearby. The places found are centered around the user's current location. Once the search results have been found, the sample shows various ways to display the results. It demonstrates how to use MKLocalSearchCompletionHandler and populate the UITableView with the search results.
MessageComposer? User Experience MessageUI This application shows how to use the MessageUI framework to compose and send email and SMS messages from within your application.
MetalBasic3D? Graphics & Animation (3D Drawing) Metal This Metal example has been ported from the Xcode OpenGL ES template and includes a reusable view class and a geometric math library built on top of the simd.h library. The math library has been created for performing geometric graphics operations within Metal's left hand coordinate system and is used in this sample to set up a basic perspective, look at and model view projection matrix for objects rendered in the scene. Each cube is renderered individually using a basic 3D lighting shader with diffuse and ambient components. Additional effects have been added to one of the spinning cubes from the template to demonstrate altering a single object's uniform values per frame while keeping the other constant, all the while sharing the same buffer in memory. The cube geometry is defined with interlaced vertex and normal data and demonstrates how stride can be read within a shader.
MetalDeferredLighting? Graphics & Animation (3D Drawing) Metal MetalDeferredLighting is designed as an example of rendering of a g-buffer and light accumulation in a single render encoder in one pass using programmable blending. In this sample, we render in 2 passes. As such it is also an example of a multipass renderer in Metal. A "pass" in this case is defined as all draws to a texture before swapping it out for a new texture. The first pass renders a shadow map based on the calculated position of a sun. The second pass performs a deferred lighting algorithm by writing to and reading from a framebuffer containing 4 color attachments. Three of the attachments are seeded with the g-buffer values (albedo, linear depth, normal). Next, light primitives are rendered to accumulate light into the light accumulation attachment, reading the g-buffer values directly from the other attachments. A full screen quad combines the light accumulation buffer with the albedo texture, samples the shadow map as a texture, and applies the light contribution from the sun. The results of this composition pass overwrites the albedo attachment with the final composited output. Lastly, particles representing each point light (lovingly called fairies) are rendered on top. What began as the albedo texture in the g-buffer now contains the final value, which can be presented to the display as its texture is the CAMetalLayer's drawable texture.
MetalImageProcessing? Graphics & Animation (3D Drawing) Metal This sample extends the textured quad sample by adding a Metal compute encoder to convert the image to greyscale. Note the compute encoder is part of the same pass as the render encoder and hence demonstrates how you can use the same shared CPU/GPU data across compute and rendering.
MetalInstancedHelix? ? Metal This example renders a set of cubes using Metal and alternates their colors by modifying each cube's uniforms directly in the shared CPU/GPU memory buffer. Several parameters can be modified directly in the AAPLRenderer.mm file including the number of cubes and their size. The cubes are rendered into a helix path using spherical coordinate system to get x,y,z for the translation matrix. Each cube is renderered individually using a basic 3D phong lighting shader, but drawn in only a single draw call using Metal's instancing API. Note, for each frame, each cube's transformation matrix is update along with its color, therefore in each frame the sample must traverese through 2n cubes.
MetalShaderShowcase? ? Metal Metal Shader Showcase demonstrates a variety of visual techniques optimized with Metal. It contains 7 unique shaders: a Phong shader, a wood shader, a fog shader, a cel shader, a normal map shader, and a particle system shader. Using the Metal reflection API, the renderer queries the shaders for what arguments are needed and presents them to the render encoder.
MetalTexturedQuad? Graphics & Animation (3D Drawing) Metal This sample shows how to create a basic textured quad in metal. It includes all transformations needed to ensure correct rendering orientation of the textured quad.
MetalUniformStreaming? Graphics & Animation (3D Drawing) Metal Metal creates data buffer resources that can be read and written to on the CPU and GPU asynchronously. This example demonstrates using a data buffer to set uniforms for the vertex and fragment shaders.
MetalVertexStreaming? Graphics & Animation (3D Drawing) Metal This sample shows how to stream vertex data between 3 command buffers using one block of memory shared by both the CPU and GPU. The original data is copied back into the Metal shared CPU/GPU buffer every frame and modified directly in the buffer to animate the triangle.
MetalVideoCapture? ? Metal This sample demonstrates how to stream captured video textures (from the front facing camera on an iOS device) into a 3D scene rendered with Metal. The video texture is combined with an environment map reflection from a cubemap (which is also rendered seperatly as the starfield skybox) and a 2D mipmap PVRTC texture (copper metal texture).
Mixer iPodEQ AUGraph Test? Audio & Video CoreAudio Demonstrates how to build an Audio Unit Graph connecting a MultiChannel Mixer to the iPodEQ unit then to the RemoteIO unit.
MotionEffects? User Experience UIKit MotionEffects demonstrates applying motion effects to views in order to enhance the illusion of depth by creating parallxing effects. This sample is broken down into three different parts, each demonstrating a unique way to use motion effects.
MotionGraphs? User Experience CoreMotion "MotionGraphs" demonstrates a how to use the push method to receive data from Core Motion. It displays graphs of accelerometer, gyroscope, and device motion data.
MoveMe? User Experience UIKit This application illustrates simple drawing, touch handling, and animation using UIKit and Core Animation.
MoviePlayer? Audio & Video (Video) MediaPlayer Demonstrates how to use the Media Player framework to play a movie from a file or network stream, and configure the movie background color, playback controls, background color and image, scaling and repeat modes. It also shows how to draw custom overlay controls on top of the movie during playback.
MTAudioProcessingTap Audio Processor? Audio & Video AVFoundation Sample application that uses the MTAudioProcessingTap in combination with AV Foundation to visualize audio samples as well as applying a Core Audio audio unit effect (Bandpass Filter) to the audio data.
MultipeerGroupChat? Networking & Internet MultipeerConnectivity Multipeer Group Chat is an example application which builds on the Multipeer Connectivity framework for discovering, connecting, and sharing data between "nearby" peers. This application uses framework based UI for connecting to local peers and the framework convenience API for exhanging text messages and image resources between devices.
Multiple Selection with UITableView? User Experience (Tables) UIKit "TableMultiSelect" demonstrates the use of multiple selection of table cells in UITableView, in particular using multiple selection to delete one or more items.
MultipleDetailViews? User Experience (Windows & Views) UIKit This sample shows how you can use UISplitViewController to manage the presentation of multiple detail views in conjunction with a navigation hierarchy.
MusicCube? Graphics & Animation (3D Drawing) GLKit MusicCube demonstrates basic use of OpenGL ES, OpenAL, and Audio File Services on the iPhone for manipulating sound in a 3D environment. The four modes in the application illustrate how the sound volume and balance will change based on the position of the omnidirectional sound source and the position and rotation of the listener. Tap on the screen to switch between modes.
MVCNetworking? Networking & Internet ? MVCNetworking is a sample that shows how to create a network application using the Model-View-Controller design pattern. Specifically, it displays a photo gallery by getting the gallery's XML description, thumbnails and photos from a web server, and uses Core Data to cache this information locally.
MyImagePicker? General AssetsLibrary Demonstrates how to create an image picker user interface using the AssetsLibrary framework to display all albums, events and faces synced from iTunes.
oalTouch? Audio & Video (Audio) OpenAL The code uses OpenAL to play a single audio source. Move source or listener position by dragging icons around on the grid. Turn accelerometer functionality on to set listener orientation by tilting the device.
Packaged Document for iOS? Data Management (File Management) Foundation "PackagedDocument_iOS" is a sample application for opening, editing and saving packaged documents using UIDocument and NSFileWrapper. This sample is ARC-enabled (Automatic Reference Counting).
PageControl? User Experience UIKit This application primarily demonstrates use of UIScrollView's paging functionality to use horizontal scrolling as a mechanism for navigating between different pages of content. With the iPad, this type of user interface is not really necessary since the screen is larger allowing for more content and detailed information.
pARk? Data Management (Event Handling) CoreMotion pARk is an application project that demonstrates a how to use Core Motion's true north-referenced attitude API. It contains a UIView subclass, ARView, that displays a live camera feed with places-of-interest overlaid at the appropriate coordinates. The places-of-interest used are some famous parks around the world.
PhotoHandoff: Implementing NSUserActivity to hand off user actions? ? UIKit Demonstrates how to use NSUserActivity, based on “CollectionView-Simple” sample. It is a universal sample that runs native both on iPhone and iPad. - Enable Handoff for both devices (Settings -> General -> Enable Handoff) - Both devices must be logged into the same iCloud account - Bluetooth must be turned on (Settings -> Bluetooth)
PhotoMap? User Experience MapKit The PhotoMap sample demonstrates how to load and display geotagged photos as Map Kit annotations. It further demonstrates how to cluster multiple annotations together to reduce on-screen clutter.
PhotosByLocation? General AssetsLibrary Demonstrates how to use the AssetsLibrary APIs to provide a custom image picking UI. The user experience is centered around the idea of using the assets location and time metadata as a basis for certain features.
PhotoScroller? User Experience UIKit "PhotoScroller" demonstrates the use of embedded UIScrollViews and CATiledLayer to create a rich user experience for displaying and paginating photos that can be individually panned and zoomed. CATiledLayer is used to increase the performance of paging, panning, and zooming with high-resolution images or large sets of photos.
PocketCoreImage? Graphics & Animation CoreImage This sample demonstrates applying Core Image filters to a still image. The filter configuration is done automatically (using random numbers) and multiple filters may be applied at the same time. While this sample uses a preset list of filters that the user may select from, code is provided in the next section which demonstrates asking the system for a list of filters.
Popover Controllers in iOS? User Experience (Windows & Views) UIKit "Popovers" shows how to use UIPopoverController in iOS, including presentation, dismissal, and rotation of popovers. The sample uses a UISplitViewController to show how to present popovers from bar button items. It also demonstrates how you can ensure that multiple UIPopoverControllers are never presented at the same time.
PrefsInCloud? Data Management ? A simple iOS iPhone application that demonstrates how to use iCloud key-value store to share a single piece of data, its background color, with the same app on other iOS devices. It uses NSUbiquitousKeyValueStore to achieve this by storing a simple NSInteger representing a chosen color index.
PrintPhoto? Graphics & Animation (2D Drawing) UIKit PrintPhoto demonstrates how to print photos. The application allows a user to view and print any photo from the user's photo library. It initially presents a photo that is built into the application's bundle but by touching the photo picker icon you can choose any photo in the library.
PVRTextureLoader? Graphics & Animation (3D Drawing) OpenGLES This application illustrates how to load PVR texture files using the included PVRTexture class and then display them using OpenGL.
Quartz Composer Conceptual Compositions? Graphics & Animation QuartzCore Compositions that demonstrate how to implement composition flow, image flow, music visualizer and other effects using Quartz Composer.
Quartz Composer HistogramOperation? Graphics & Animation ? A Quartz Composer plug-in that alters a source image according to the histogram of another image.
Quartz Composer IMStatus? Graphics & Animation ? A Quartz Composer plug-in that returns information about the logged in user and his or her buddies on a given instant messaging service.
Quartz Composer iPatch? Graphics & Animation ? A Quartz Composer plug-in that converts any name to an "iName".
Quartz Composer SQLiteQuery? Graphics & Animation ? A Quartz Composer plug-in that performs a query on a local SQlite database.
Quartz2D for iOS? Graphics & Animation (2D Drawing) CoreGraphics QuartzDemo is an iOS application that demonstrates many of the Quartz2D APIs made available by the CoreGraphics framework. Quartz2D forms the foundation of all drawing on iPhone OS and provides facilities for drawing lines, polygons, curves, images, gradients, PDF and many other graphical facilities.
QuickContacts? Data Management (Contact Data) AddressBook QuickContacts demonstrates how to use the Address Book UI controllers and various properties such as displayedProperties, allowsAddingToAddressBook, and displayPerson. It shows how to browse a list of Address Book contacts, display and edit a contact record, create a new contact record, and update a partial contact record.
Reachability? Networking & Internet (Services & Discovery) SystemConfiguration The Reachability sample application demonstrates how to use the SystemConfiguration framework to monitor the network state of an iOS device. In particular, it demonstrates how to know when IP can be routed and when traffic will be routed through a Wireless Wide Area Network (WWAN) interface such as EDGE or 3G.
Real-time Video Processing Using AVPlayerItemVideoOutput? Audio & Video (Video) AVFoundation AVBasicVideoOutput demonstrates how to perform real-time video processing using AVPlayerItemVideoOutput and how to display processed video frames on screen using CAEAGLLayer and CADisplayLink. AVPlayerItemVideoOutput provides sample buffers (CVPixelBufferRef) which are then adjusted for their luma (Y) and chroma (UV) values based on the input from a user via UISliders. These processed pixel buffers are then rendered to a CAEAGLLayer.
Reflection? Graphics & Animation (2D Drawing) UIKit This sample shows how to implement a "reflection" special effect on a given UIImageView most commonly seen in iTunes and iPod player apps.
Regions? User Experience MapKit This sample demonstrates proper use of region monitoring, significant location changes, and handling location events in the background on iOS. The sample uses an MKMapView that allows the user to add and remove regions to monitor, as well as a UITableView to display the region enter/exit/fail events that occur. When the application goes into the background, location updates are stopped and significant location changes are started. Likewise, when the application enters the foreground, location updates are started again and significant location changes are stopped. When location updates occur in the background, a badge is added to the homescreen icon displaying the number of region enter/exit/fail events logged.
RosyWriter? Audio & Video (Video) AVFoundation RosyWriter
Sample Photo Editing Extension? Languages & Utilities (Graphics Tools) UIKit This sample shows how to implement a Photo Editing extension. This extension allows the user to select a filter effect to apply to the photo or video selected in Photos or Camera.
Sample Print Page Renderer? Graphics & Animation UIKit This sample demonstrates taking full control over the printed page using a UIPrintPageRenderer subclass. In addition to drawing full-page custom content, custom headers, and footers, it also shows how UIPrintFormatters can be utilized to do some heavy lifting.
Sampler Unit Presets (LoadPresetDemo)? Audio & Video (Audio) AudioUnit This sample code project shows how to create an an iOS audio processing graph containing a Sampler audio unit and how to configure the sampler by loading an AUPreset file that was created in Mac OS X. The project also shows how to start the graph and trigger note-on and note-off events to audition the presets.
SceneKit State of the Union Demo? ? SceneKit This sample shows how the demo for the state the of union was realized. It includes examples of physics simulation, particles, collisions, physics field, 3D text, the integration with SpriteKit and custom GLSL shaders.
SceneKit Vehicle Demo? ? SceneKit This sample code shows how to simulate a vehicle using the SCNPhysicsVehicle behaviour. The vehicle can be controller with either the accelerometer or a game controller. It also illustrate basic physics interaction and game overlays done with SpriteKit.
Simple Background Transfer? Networking & Internet UIKit "SimpleBackgroundTransfer" illustrates how to support Background Transfer using NSURLSession to manage a download task.
Simple Core Data Relationships? Data Management CoreData TaggedLocations illustrates how you can change Core Data attributes and relationships in an iOS application.
Simple Gesture Recognizers? Data Management (Event Handling) UIKit This sample shows how you can easily use UITapGestureRecognizer, UISwipeGestureRecognizer, and UIRotationGestureRecognizer to detect user gestures. It illustrates the use of basic target-action messaging using recognizers, and also shows: how you can toggle the behavior of a recognizer at runtime using delegation; options for maintaining references to recognizers; and interaction with the exclusive touch setting for views.
Simple UISearchBar with State Restoration? User Experience (Tables) UIKit "TableSearch" demonstrates how to use a UISearchDisplayController object. When you present a large amount of data in a table view, you can use a search display controller to let the user search the contents of the table view to quickly find items of interest. The sample shows how you can display data in a table view and use a search display controller to display a search bar and another table view that shows the results of a search. The sample also illustrates use of state restoration.
SimpleEKDemo? ? EventKit The application demonstrates how to check and request access to a user's Calendar. It uses table views to display EKCalendar object and EKEvent objects retrieved from an EKEventStore object. It implements EKEventViewController for viewing and editing existing EKEvents, and uses EKEventEditViewController for creating new EKEvents.
SimpleFTPSample? Networking & Internet (Protocol Streams) Foundation SimpleFTPSample shows how to do simple FTP operations using the NSURLConnection and CFFTPStream APIs. It can download a file using both NSURLConnection and CFFTPStream. Also, it can upload a file, list a directory, and create a directory using CFFTPStream.
SimpleNetworkStreams? Networking & Internet (Sockets & TCP) ? Shows how to do simple networking using the NSStream API. The goal of this sample is very limited: it does not demonstrate everything you need to implement a fully fledged networking product, rather, it focuses on using the NSStream API to move a realistic amount of data across the network.
SimpleUndo? User Experience Foundation The root view controller displays information (title, author, and copyright date) about a book. The user can edit this information by tapping Edit in the navigation bar. When editing starts, the root view controller creates an undo manager to record changes. The undo manager supports up to three levels of undo and redo. When the user taps Done, changes are considered to be committed and the undo manager is disposed of.
SimpleURLConnections? Networking & Internet (Protocol Streams) Foundation SimpleURLConnections shows how to do simple networking using the NSURLConnection API. The goal of this sample is very limited: it does not demonstrate everything you need to implement a fully fledged networking product, rather, its goal is to demonstrate simple HTTP GET, PUT and POST using the NSURLConnection API.
SpeakHere? Audio & Video (Audio) AudioToolbox SpeakHere demonstrates basic use of Audio Queue Services, Audio File Services, and Audio Session Services on the iPhone for recording and playing back audio.
SquareCam? Audio & Video (Video) AVFoundation SquareCam demonstrates improvements to the AVCaptureStillImageOutput class in iOS 5, highlighting the following features:
State Restoration? User Experience UIKit Demonstrates how to implement and debug the APIs for "State Preservation and Restoration".
State Restoration of Child View Controllers? User Experience UIKit Demonstrates how to implement "State Preservation and Restoration" in an app with child view controllers. The sample contains one parent view controller, which can host two different child view controllers. The user taps the segmented control to toggle between the two different children.
StitchedStreamPlayer? Audio & Video AVFoundation A simple AVFoundation demonstration of how timed metadata can be used to identify different content in a stream, supporting a custom seek UI.
StopNGo for iOS? Audio & Video (Video) AVFoundation StopNGo is a simple stop-motion animation QuickTime movie recorder that uses AVFoundation.
StoreKitSuite? ? StoreKit StoreKitSuite consists of the iOSInAppPurchases and IAPStoreProductViewController sample codes that demonstrate how to implement In-App Purchase.
StreetScroller? User Experience (Controls) UIKit Demonstrates how a UIScrollView subclass can scroll infinitely in the horizontal direction.
Table Search with UISearchController? User Experience UIKit “Table Search with UISearchController” is an iOS sample application that demonstrates how to use UISearchController. A search controller manages the presentation of a search bar (in concert with the results view controller’s content).
Table View Animations and Gestures? User Experience (Tables) UIKit "TableViewUpdates" demonstrates how you can use animated updates to open and close sections of a table view for viewing, where each section represents a play, and each row contains a quotation from the play. It also uses gesture recognizers to respond to user input:?A UITapGestureRecognizer to allow tapping on the section headers to expand the section;?A UIPinchGestureRecognizer to allow dynamic changes to the height of table view rows; and * A UILongPressGestureRecognizer to allow press-and-hold on table view cells to initiate an email of the quotation.
TableView Fundamentals for iOS? User Experience (Tables) UIKit This sample shows how to use UITableView and UITableViewController through a progression of increasingly advanced applications that display information about time zones.
TableViewCell Accessory? User Experience (Tables) UIKit This sample demonstrates two methods that can be used to implement a custom accessory view in your UITableViewCell's. In both examples, a custom control that implements a toggle-able checkbox is used.
Tabster? User Experience (Windows & Views) UIKit An eclectic-style application designed to show how to build a tab-bar based iOS application.
Teslameter? ? CoreLocation This application implements a Teslameter, a magnetic field detector. It displays the raw x, y, and z magnetometer values, a plotted history of those values, and a computed magnitude (size or strength) of the magnetic field.
TheElements? Data Management UIKit TheElements is a sample application that provides access to the data contained in the Periodic Table of the Elements. The Periodic Table of the Elements catalogs all the known atomic elements in the universe.
TopSongs? Performance CoreData This sample code demonstrates efficiently parsing and importing data from an XML RSS feed into Core Data. The feed is from iTunes Top Songs and contains data about songs, artists, and categories. The application's data model has an entity for Song and for Category. Managed objects are inserted into a managed object context on a background thread, so the application remains responsive to the user while the import is taking place.
UICatalog: Creating and Customizing UIKit Controls (Obj-C and Swift)? User Experience UIKit This sample demonstrates how to use many views and controls in the UIKit framework along with their assorted functionalities. Refer to this sample if you are looking for specific controls or views that are provided by the system. This sample also shows you how to make your non-standard views (images or custom views) accessible. Using the iOS Accessibility API enhances the user experience of VoiceOver users.
UIImagePicker Video Recorder? Audio & Video (Video) UIKit Demonstrates how to create a custom UI for the camera variant of the UIImagePickerController and how to programmatically control video recording.
UIKit Dynamics Catalog? Graphics & Animation UIKit UIKit Dynamics Catalog illustrates a number of uses of UIKit Dynamics, the iOS API that provides physics-related capabilities and animations to views and other dynamic items. Each of the 10 view controllers in this project shows a different way to use UIKit Dynamics—-in many cases, combining dynamic behaviors for interesting results.
UIKit Printing with UIPrintInteractionController and UIViewPrintFormatter? Graphics & Animation (2D Drawing) UIKit PrintWebView demonstrates how to print the content displayed by a UIWebView object using the UIViewPrintFormatter class. This sample application is a primitive web browser with printing capability.
Unit Testing Apps and Frameworks? Xcode (IDEs) ? Shows how to build a static library for an iOS app and a Mac app, how to implement and run logic unit tests on the library source code on each platform, and how to implement and run application unit tests for the apps.
UnwindSegue? User Experience UIKit This sample demonstrates how to use segues and unwind segues to drive navigation between the various screens of content in your app. The project contains two build targets: UnwindSegue and CustomUnwindSegue. UnwindSegue demonstrates using unwind segues with modally presented view controllers as well as view controllers in a UINavigationController. CustomUnwindSegue demonstrates implementing a custom container view controller that can be used with unwind segues.
URLCache? Performance ? URLCache is a sample iPhone application that demonstrates how to download a resource off the web, store it in the application's data directory, and use the local copy of the resource. URLCache also demonstrates how to implement a couple of caching policies:
Using a Search Bar in a Toolbar? User Experience (Controls) UIKit "ToolbarSearch" shows how to use a search bar in a toolbar and present recent searches in a popover.
Using AirPrint to Print a Banner? General ? PrintBanner shows how to print a banner of arbitrary length to a roll printer. The code formats the job for landscape orientation and then calculates a font size that fills the width of the paper. It then determines the length of the text and pads the length so the final cut length results in a pleasing layout.
Using AVAudioEngine for Playback, Mixing and Recording? Audio & Video (Audio) AVFoundation This sample uses the AVAudioEngine with two AVAudioPlayerNode and AVAudioPCMBuffer objects along with an AVAudioUnitDelay and AVAudioUnitReverb to playback two loops which can then be mixed, processed and recorded.
Using External Displays? User Experience (Windows & Views) UIKit How to detect the presence of an external display, determine the available display resolutions, select a resolution, and show content on the display.
Using NSXMLParser to parse XML documents? Data Management UIKit "SeismicXML" demonstrates how to use NSXMLParser to parse XML data. The XML parsing occurs on a background thread using NSOperation and updates the earthquakes table view with batches of parsed objects.
Using UIImagePickerController to Select Pictures and Take Photos? User Experience UIKit PhotoPicker demonstrates how to choose images from the photo library, take a picture with the device's camera, and how to customize the look of the camera's user interface. This is done by using UIImagePickerController. The chosen image or camera photo is displayed in a UIImageView. To customize the camera's interface, this sample shows how to use an overlay view. With this overlay view it gives you the ability to customize the UI as you take a picture.
VideoSnake? Audio & Video AVFoundation VideoSnake demonstrates temporal synchronization of video with motion data.
ViewTransitions? Graphics & Animation (Animation) UIKit Demonstrates how to perform transitions between two views using UIView's transitionFromView and animateWithDuration API.
WatchKit Catalog: Using WatchKit Interface Elements? General WatchKit This sample demonstrates how to use UI elements available in the WatchKit framework. Refer to this sample if you want to see how to use, configure, and interact with each UI element. This project also shows you how to create sophisticated layouts using WKInterfaceGroup objects, how to load images on iPhone to send to Apple Watch, and how to use Handoff to move user data from a Glance or notification to the Watch app.
WiTap? Networking & Internet (Services & Discovery) Foundation The WiTap sample demonstrates peer-to-peer networking over Wi-Fi and Bluetooth. Using Bonjour, the application both advertises itself on the local network and displays a list of other instances on the network. Supports infrastructure networks, peer-to-peer Bluetooth, and peer-to-peer Wi-Fi (on compatible hardware).
XMLPerformance? Performance Foundation This sample explores two approaches to parsing XML, focusing on performance with respect to speed, memory footprint, and user experience. The XML data used is the current "Top 300" songs from the iTunes store. The data itself is not particularly important to the sample - it was chosen because of its simplicity, availability, and because the size (approximately 850KB) is sufficient to demonstrate the performance issues central to the sample.
ZoomingPDFViewer? Graphics & Animation (2D Drawing) CoreGraphics Multi-paged PDF viewing with UIPageViewController demonstrates two-page spline viewing in landscape orientation, which looks like a book within iBooks. The sample also uses UIScrollView and CATiledLayer to support zooming within a single-page view used in portrait orientations. This app is universal and only supports the two-page spline view in landscape orientation on iPad.

總結

以上是生活随笔為你收集整理的iOS 苹果官方Demo的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。

成年女人永久免费看片 | 我要看www免费看插插视频 | 国产精品亚洲lv粉色 | 人妻无码久久精品人妻 | 任你躁国产自任一区二区三区 | 国产精品丝袜黑色高跟鞋 | 成人动漫在线观看 | 精品国产一区av天美传媒 | 亚洲高清偷拍一区二区三区 | 亚洲の无码国产の无码影院 | 亚洲精品国产精品乱码不卡 | 性生交大片免费看女人按摩摩 | 国产亚洲视频中文字幕97精品 | 亚洲七七久久桃花影院 | 亚洲精品久久久久久久久久久 | 精品偷自拍另类在线观看 | 久久精品人人做人人综合试看 | 丰满人妻被黑人猛烈进入 | 少妇的肉体aa片免费 | 亚洲精品国偷拍自产在线观看蜜桃 | 日本在线高清不卡免费播放 | 欧美日韩亚洲国产精品 | 人人妻在人人 | 亚洲精品国产第一综合99久久 | 午夜精品久久久内射近拍高清 | 大肉大捧一进一出视频出来呀 | 少妇一晚三次一区二区三区 | 亚洲一区二区三区 | 最近免费中文字幕中文高清百度 | 天天摸天天碰天天添 | 一本色道久久综合亚洲精品不卡 | 亚洲精品鲁一鲁一区二区三区 | 日本一区二区三区免费高清 | 国产精品美女久久久久av爽李琼 | 乱人伦人妻中文字幕无码久久网 | 亚洲欧美日韩国产精品一区二区 | 亚洲国精产品一二二线 | 中文毛片无遮挡高清免费 | 在线观看国产一区二区三区 | 亚洲 另类 在线 欧美 制服 | 国产免费无码一区二区视频 | 18禁止看的免费污网站 | 无码人妻丰满熟妇区毛片18 | 狠狠综合久久久久综合网 | 久久精品无码一区二区三区 | 亚洲va中文字幕无码久久不卡 | 亚洲日韩av一区二区三区四区 | 小鲜肉自慰网站xnxx | 人妻少妇被猛烈进入中文字幕 | 一本色道久久综合亚洲精品不卡 | 性欧美videos高清精品 | 偷窥日本少妇撒尿chinese | 蜜臀av无码人妻精品 | 国産精品久久久久久久 | av在线亚洲欧洲日产一区二区 | 国产色在线 | 国产 | 搡女人真爽免费视频大全 | 天天躁日日躁狠狠躁免费麻豆 | 蜜臀av无码人妻精品 | 亚洲精品一区二区三区在线观看 | 国产精品久久久久久无码 | 人妻无码久久精品人妻 | 国产亚洲精品精品国产亚洲综合 | 人人爽人人爽人人片av亚洲 | 欧美丰满老熟妇xxxxx性 | 99精品无人区乱码1区2区3区 | 欧洲美熟女乱又伦 | 一本大道久久东京热无码av | 国产亲子乱弄免费视频 | 日本熟妇人妻xxxxx人hd | 中文字幕精品av一区二区五区 | 国产成人人人97超碰超爽8 | yw尤物av无码国产在线观看 | 中国女人内谢69xxxx | 欧美午夜特黄aaaaaa片 | 麻豆蜜桃av蜜臀av色欲av | 久久综合网欧美色妞网 | 亚洲综合无码久久精品综合 | 久久久久av无码免费网 | 欧美freesex黑人又粗又大 | 综合网日日天干夜夜久久 | 人妻熟女一区 | 国产在线精品一区二区高清不卡 | 国产亚洲美女精品久久久2020 | 无码人妻av免费一区二区三区 | 自拍偷自拍亚洲精品被多人伦好爽 | 老熟女乱子伦 | 国产激情一区二区三区 | 国产亚洲欧美在线专区 | 亚洲综合无码久久精品综合 | 亚洲国产精华液网站w | 76少妇精品导航 | 精品久久久中文字幕人妻 | 欧洲vodafone精品性 | 亚洲s码欧洲m码国产av | 白嫩日本少妇做爰 | 日本一卡二卡不卡视频查询 | 高清无码午夜福利视频 | 女人被爽到呻吟gif动态图视看 | 大地资源中文第3页 | 欧美野外疯狂做受xxxx高潮 | 色综合久久88色综合天天 | 国产午夜福利100集发布 | 欧美乱妇无乱码大黄a片 | 国产特级毛片aaaaaaa高清 | 少妇性l交大片欧洲热妇乱xxx | 扒开双腿吃奶呻吟做受视频 | 欧美黑人性暴力猛交喷水 | 国产成人精品视频ⅴa片软件竹菊 | 大肉大捧一进一出视频出来呀 | 亚洲国产av美女网站 | 天天做天天爱天天爽综合网 | 亚洲国产欧美日韩精品一区二区三区 | 日本免费一区二区三区最新 | 国内精品人妻无码久久久影院蜜桃 | 久久亚洲中文字幕精品一区 | 欧美日韩综合一区二区三区 | 无码吃奶揉捏奶头高潮视频 | 国产精品久久久久久无码 | 精品久久久中文字幕人妻 | aⅴ亚洲 日韩 色 图网站 播放 | 国产一区二区不卡老阿姨 | 人妻尝试又大又粗久久 | 亚洲日本一区二区三区在线 | 又大又硬又爽免费视频 | 日日摸夜夜摸狠狠摸婷婷 | 亚洲一区av无码专区在线观看 | 亚洲欧美日韩成人高清在线一区 | 久久人人爽人人爽人人片av高清 | 男人扒开女人内裤强吻桶进去 | 熟女少妇在线视频播放 | 精品国产乱码久久久久乱码 | 国产熟女一区二区三区四区五区 | 欧美熟妇另类久久久久久多毛 | 色婷婷综合中文久久一本 | 久久精品中文闷骚内射 | 又大又硬又黄的免费视频 | 亚洲国产精品久久久久久 | 国产激情精品一区二区三区 | 国产亚洲精品精品国产亚洲综合 | 中文字幕乱码人妻二区三区 | 精品国产一区av天美传媒 | 久久精品丝袜高跟鞋 | 在线播放无码字幕亚洲 | 男女性色大片免费网站 | 天天躁夜夜躁狠狠是什么心态 | 久久人人爽人人爽人人片ⅴ | 六十路熟妇乱子伦 | 国产亚洲欧美日韩亚洲中文色 | 国产成人无码一二三区视频 | 亚洲成a人片在线观看日本 | 国产精品久久久午夜夜伦鲁鲁 | 亚洲乱码中文字幕在线 | 特黄特色大片免费播放器图片 | 国产人妖乱国产精品人妖 | 99riav国产精品视频 | 无人区乱码一区二区三区 | 高中生自慰www网站 | 少妇高潮喷潮久久久影院 | 午夜熟女插插xx免费视频 | 国产两女互慰高潮视频在线观看 | 台湾无码一区二区 | 人人妻人人澡人人爽欧美一区 | 六月丁香婷婷色狠狠久久 | 亚洲国产精品久久久久久 | 人妻天天爽夜夜爽一区二区 | 欧美日韩久久久精品a片 | 精品厕所偷拍各类美女tp嘘嘘 | 久久亚洲国产成人精品性色 | 精品偷自拍另类在线观看 | 久久久av男人的天堂 | 77777熟女视频在线观看 а天堂中文在线官网 | 日本一本二本三区免费 | 天天躁夜夜躁狠狠是什么心态 | 欧美丰满熟妇xxxx性ppx人交 | 97资源共享在线视频 | 免费观看激色视频网站 | 日韩人妻系列无码专区 | 久久综合九色综合97网 | 欧美 亚洲 国产 另类 | 55夜色66夜色国产精品视频 | 精品 日韩 国产 欧美 视频 | 波多野结衣高清一区二区三区 | 美女扒开屁股让男人桶 | 欧美xxxxx精品 | 国产精品无码一区二区桃花视频 | 久久久无码中文字幕久... | 亚洲一区二区三区国产精华液 | 蜜桃视频插满18在线观看 | 国产美女精品一区二区三区 | 人人妻人人澡人人爽欧美一区九九 | 欧美日韩综合一区二区三区 | 老子影院午夜伦不卡 | 国产精品人人妻人人爽 | 国产激情无码一区二区app | 天天躁日日躁狠狠躁免费麻豆 | 少妇人妻偷人精品无码视频 | 在线观看国产一区二区三区 | 99久久久无码国产aaa精品 | 久久97精品久久久久久久不卡 | 露脸叫床粗话东北少妇 | 精品人妻av区 | 久久久久久av无码免费看大片 | 99re在线播放 | 未满小14洗澡无码视频网站 | 男女猛烈xx00免费视频试看 | 色综合天天综合狠狠爱 | 久青草影院在线观看国产 | 国产在热线精品视频 | 高中生自慰www网站 | 亚洲成av人综合在线观看 | 亚洲精品国产品国语在线观看 | 国产麻豆精品一区二区三区v视界 | 国产成人无码一二三区视频 | 国产麻豆精品一区二区三区v视界 | 国产舌乚八伦偷品w中 | 国产精品亚洲五月天高清 | 色一情一乱一伦一区二区三欧美 | 少妇性俱乐部纵欲狂欢电影 | 国产亲子乱弄免费视频 | 在线天堂新版最新版在线8 | 性色av无码免费一区二区三区 | 国产亚洲精品久久久久久国模美 | 免费播放一区二区三区 | av香港经典三级级 在线 | 欧美35页视频在线观看 | 国产性生大片免费观看性 | 国产麻豆精品一区二区三区v视界 | 18精品久久久无码午夜福利 | 精品亚洲韩国一区二区三区 | 人人妻人人澡人人爽人人精品 | 无码国产乱人伦偷精品视频 | 中文字幕久久久久人妻 | 未满成年国产在线观看 | 国产黑色丝袜在线播放 | 天天拍夜夜添久久精品大 | 天天综合网天天综合色 | 国产精品美女久久久网av | 水蜜桃av无码 | 国产亚洲精品久久久久久久久动漫 | 日韩成人一区二区三区在线观看 | 人人妻人人澡人人爽欧美一区 | 国产av久久久久精东av | 国产精品久久久久影院嫩草 | 极品嫩模高潮叫床 | 少妇人妻偷人精品无码视频 | www国产亚洲精品久久网站 | 综合激情五月综合激情五月激情1 | 国产明星裸体无码xxxx视频 | 丝袜 中出 制服 人妻 美腿 | 亚洲一区二区三区香蕉 | 成人女人看片免费视频放人 | 男女爱爱好爽视频免费看 | 波多野结衣av一区二区全免费观看 | 亚洲精品欧美二区三区中文字幕 | 国产无遮挡吃胸膜奶免费看 | 激情内射亚州一区二区三区爱妻 | 亚洲精品国产精品乱码视色 | 中文字幕人妻丝袜二区 | 日韩欧美群交p片內射中文 | 国产成人无码午夜视频在线观看 | 欧美老人巨大xxxx做受 | 亚洲精品国产a久久久久久 | 久久久久亚洲精品男人的天堂 | 国产超碰人人爽人人做人人添 | 久久精品女人天堂av免费观看 | 无码人妻精品一区二区三区下载 | 天下第一社区视频www日本 | 久久99国产综合精品 | 国产熟妇高潮叫床视频播放 | 夜夜躁日日躁狠狠久久av | 国产成人人人97超碰超爽8 | 国产人妻精品一区二区三区不卡 | 国产明星裸体无码xxxx视频 | 亚洲热妇无码av在线播放 | 无码人妻精品一区二区三区不卡 | 天天摸天天碰天天添 | 天天综合网天天综合色 | 日本一区二区三区免费高清 | 国产乱人伦app精品久久 国产在线无码精品电影网 国产国产精品人在线视 | 精品日本一区二区三区在线观看 | 内射后入在线观看一区 | 亚洲精品中文字幕久久久久 | 99久久久无码国产aaa精品 | 人人爽人人爽人人片av亚洲 | 偷窥日本少妇撒尿chinese | 99久久精品国产一区二区蜜芽 | 婷婷五月综合激情中文字幕 | 亚洲人成网站免费播放 | 国产亚洲人成a在线v网站 | 亚洲国产欧美日韩精品一区二区三区 | 久久zyz资源站无码中文动漫 | 蜜桃视频插满18在线观看 | 中文精品无码中文字幕无码专区 | 国产乱码精品一品二品 | 97久久精品无码一区二区 | 四虎4hu永久免费 | 亚洲人成网站色7799 | 荡女精品导航 | 日本乱偷人妻中文字幕 | 久久久www成人免费毛片 | 亚洲第一无码av无码专区 | 亚洲精品国产a久久久久久 | 久久久久久久久888 | 99精品视频在线观看免费 | 女人和拘做爰正片视频 | 亚洲人成网站免费播放 | 精品久久久久久人妻无码中文字幕 | 国产精品亚洲专区无码不卡 | 亚洲日韩av一区二区三区四区 | 激情人妻另类人妻伦 | 久久午夜夜伦鲁鲁片无码免费 | 精品无码国产自产拍在线观看蜜 | 西西人体www44rt大胆高清 | 乱码av麻豆丝袜熟女系列 | 波多野结衣av一区二区全免费观看 | 亚洲另类伦春色综合小说 | 亚洲人亚洲人成电影网站色 | 色一情一乱一伦一视频免费看 | 欧美丰满熟妇xxxx性ppx人交 | 中文字幕色婷婷在线视频 | 国产亚洲精品久久久久久 | 性史性农村dvd毛片 | 国产乱人偷精品人妻a片 | 欧美人与物videos另类 | 日韩av无码一区二区三区不卡 | 亚洲精品成人av在线 | 午夜福利不卡在线视频 | 国产精品香蕉在线观看 | 亚洲va中文字幕无码久久不卡 | 国产精品手机免费 | 无码午夜成人1000部免费视频 | 亚洲欧美日韩国产精品一区二区 | 久久久久国色av免费观看性色 | 青青草原综合久久大伊人精品 | 国产精品-区区久久久狼 | 人人澡人人透人人爽 | 无码中文字幕色专区 | 久久无码专区国产精品s | 影音先锋中文字幕无码 | 日产精品高潮呻吟av久久 | 亚洲国产欧美日韩精品一区二区三区 | 东京无码熟妇人妻av在线网址 | 亚洲综合久久一区二区 | 国产乱人无码伦av在线a | 无遮挡国产高潮视频免费观看 | 天下第一社区视频www日本 | 日韩精品无码免费一区二区三区 | 亚洲欧美精品伊人久久 | 2020久久超碰国产精品最新 | 亲嘴扒胸摸屁股激烈网站 | 国产乡下妇女做爰 | 亚洲高清偷拍一区二区三区 | 久久精品国产一区二区三区 | 成人毛片一区二区 | 久久精品女人天堂av免费观看 | 亚洲熟悉妇女xxx妇女av | 国产人妻人伦精品 | 亚洲综合精品香蕉久久网 | 亚洲aⅴ无码成人网站国产app | 夫妻免费无码v看片 | 国产精品办公室沙发 | 午夜成人1000部免费视频 | 亚洲自偷精品视频自拍 | 亚洲中文字幕在线观看 | 爆乳一区二区三区无码 | 国产精品福利视频导航 | 人妻互换免费中文字幕 | 久激情内射婷内射蜜桃人妖 | 日本精品高清一区二区 | 午夜肉伦伦影院 | 国产精品久免费的黄网站 | 亚洲无人区一区二区三区 | 久久久久人妻一区精品色欧美 | 久久天天躁狠狠躁夜夜免费观看 | 久久99精品久久久久久 | 亚洲精品午夜无码电影网 | 99久久婷婷国产综合精品青草免费 | 国产尤物精品视频 | 欧美人与牲动交xxxx | 爆乳一区二区三区无码 | 波多野结衣一区二区三区av免费 | 欧美freesex黑人又粗又大 | 男人扒开女人内裤强吻桶进去 | 国产黑色丝袜在线播放 | 成人一在线视频日韩国产 | 精品无码国产自产拍在线观看蜜 | 亚洲国产精品一区二区美利坚 | 色诱久久久久综合网ywww | 精品日本一区二区三区在线观看 | 小泽玛莉亚一区二区视频在线 | 精品国产一区av天美传媒 | 欧美黑人巨大xxxxx | 亚洲国产精品久久久久久 | 亚洲日韩av一区二区三区四区 | 老头边吃奶边弄进去呻吟 | 中文字幕精品av一区二区五区 | 免费视频欧美无人区码 | 久久久久久久久蜜桃 | 久久精品女人的天堂av | 夫妻免费无码v看片 | 国产成人亚洲综合无码 | 大乳丰满人妻中文字幕日本 | 伊人久久大香线蕉亚洲 | 妺妺窝人体色www在线小说 | 国产免费观看黄av片 | 成人亚洲精品久久久久 | 国产精品久久久久久亚洲毛片 | 丰满少妇高潮惨叫视频 | 亚洲成a人片在线观看无码3d | 一本大道伊人av久久综合 | 欧美成人午夜精品久久久 | 日韩成人一区二区三区在线观看 | 少妇的肉体aa片免费 | 国产美女精品一区二区三区 | 国产亚洲精品久久久久久大师 | 无人区乱码一区二区三区 | 精品 日韩 国产 欧美 视频 | 麻豆国产97在线 | 欧洲 | 曰韩少妇内射免费播放 | 久在线观看福利视频 | 一本色道久久综合亚洲精品不卡 | 久久久久久亚洲精品a片成人 | 亚洲男人av天堂午夜在 | 红桃av一区二区三区在线无码av | 乱码午夜-极国产极内射 | 久久国产精品二国产精品 | 亚无码乱人伦一区二区 | 在线亚洲高清揄拍自拍一品区 | 国产午夜手机精彩视频 | 亚洲成a人一区二区三区 | 爱做久久久久久 | 国产精品美女久久久久av爽李琼 | 人妻夜夜爽天天爽三区 | 国产亚洲tv在线观看 | 久久精品一区二区三区四区 | 东京热无码av男人的天堂 | 亚洲 a v无 码免 费 成 人 a v | 爽爽影院免费观看 | 久久这里只有精品视频9 | 欧美国产日产一区二区 | 亚洲色偷偷男人的天堂 | 久热国产vs视频在线观看 | 国产农村乱对白刺激视频 | 荡女精品导航 | 国产精品18久久久久久麻辣 | 无码午夜成人1000部免费视频 | 亚洲呦女专区 | 国产农村妇女aaaaa视频 撕开奶罩揉吮奶头视频 | 少妇性l交大片 | 精品一区二区三区波多野结衣 | 国产精品久久久av久久久 | 国产精华av午夜在线观看 | 亚洲第一无码av无码专区 | v一区无码内射国产 | 精品无人国产偷自产在线 | 亚洲狠狠色丁香婷婷综合 | 四虎影视成人永久免费观看视频 | 又色又爽又黄的美女裸体网站 | 少妇一晚三次一区二区三区 | 帮老师解开蕾丝奶罩吸乳网站 | 青草视频在线播放 | 精品久久久久久人妻无码中文字幕 | 国产精品久久精品三级 | 欧美黑人巨大xxxxx | 一本色道婷婷久久欧美 | 亚洲精品国产品国语在线观看 | 76少妇精品导航 | 欧美丰满熟妇xxxx性ppx人交 | 蜜桃视频插满18在线观看 | 精品久久综合1区2区3区激情 | 亚洲 日韩 欧美 成人 在线观看 | 女人被男人爽到呻吟的视频 | 少妇被黑人到高潮喷出白浆 | 国产精品-区区久久久狼 | www国产亚洲精品久久久日本 | 久久国产36精品色熟妇 | 国产av人人夜夜澡人人爽麻豆 | 午夜理论片yy44880影院 | 沈阳熟女露脸对白视频 | 熟妇女人妻丰满少妇中文字幕 | 狠狠躁日日躁夜夜躁2020 | 国产精品无码一区二区桃花视频 | 男女超爽视频免费播放 | 国产明星裸体无码xxxx视频 | 国产 浪潮av性色四虎 | 国产精品无码成人午夜电影 | 免费看男女做好爽好硬视频 | 久久久成人毛片无码 | 久久国产精品精品国产色婷婷 | 亚洲无人区午夜福利码高清完整版 | 少妇高潮一区二区三区99 | 色一情一乱一伦一区二区三欧美 | 东京热无码av男人的天堂 | 少妇无码av无码专区在线观看 | 日本乱人伦片中文三区 | 欧美性生交活xxxxxdddd | 一二三四社区在线中文视频 | 美女黄网站人色视频免费国产 | 玩弄中年熟妇正在播放 | 在线成人www免费观看视频 | 兔费看少妇性l交大片免费 | 一本久久a久久精品vr综合 | 精品偷拍一区二区三区在线看 | 伊人久久大香线蕉午夜 | 欧美丰满熟妇xxxx性ppx人交 | 久久久久免费精品国产 | 东京热无码av男人的天堂 | 亚洲国产成人av在线观看 | 亚洲一区二区三区国产精华液 | 国产亚洲美女精品久久久2020 | 对白脏话肉麻粗话av | 色 综合 欧美 亚洲 国产 | 日韩精品无码免费一区二区三区 | 青青久在线视频免费观看 | 一区二区三区乱码在线 | 欧洲 | 亚洲色成人中文字幕网站 | 丁香啪啪综合成人亚洲 | 日本精品高清一区二区 | 国产乱子伦视频在线播放 | 国产色视频一区二区三区 | 国产乱人偷精品人妻a片 | 最近免费中文字幕中文高清百度 | 国产乱子伦视频在线播放 | 精品国产一区二区三区四区 | 少妇一晚三次一区二区三区 | 天堂久久天堂av色综合 | 亚洲熟妇色xxxxx欧美老妇y | 天天躁夜夜躁狠狠是什么心态 | 亚洲综合色区中文字幕 | 国产精品a成v人在线播放 | 无码人妻少妇伦在线电影 | 国产成人无码a区在线观看视频app | 成人无码视频免费播放 | 国内揄拍国内精品人妻 | 亚洲日韩乱码中文无码蜜桃臀网站 | 东京无码熟妇人妻av在线网址 | 久久国产劲爆∧v内射 | 特级做a爰片毛片免费69 | 中文字幕 亚洲精品 第1页 | 欧洲熟妇精品视频 | 成人欧美一区二区三区 | 图片区 小说区 区 亚洲五月 | 无码av最新清无码专区吞精 | 秋霞成人午夜鲁丝一区二区三区 | 国产无遮挡又黄又爽免费视频 | 中文字幕日韩精品一区二区三区 | 精品国产青草久久久久福利 | 人人妻人人澡人人爽人人精品浪潮 | 久久综合色之久久综合 | 久久久久久国产精品无码下载 | 午夜精品久久久内射近拍高清 | 水蜜桃亚洲一二三四在线 | 久久久久免费看成人影片 | 精品国产精品久久一区免费式 | 无码一区二区三区在线 | 国产成人综合色在线观看网站 | 性做久久久久久久久 | 国产成人精品三级麻豆 | 中国大陆精品视频xxxx | 兔费看少妇性l交大片免费 | 免费国产成人高清在线观看网站 | 日本精品高清一区二区 | 久久久久av无码免费网 | 亚洲va中文字幕无码久久不卡 | 成人精品视频一区二区 | 中文字幕中文有码在线 | 国产精品va在线观看无码 | 国产av无码专区亚洲a∨毛片 | 狠狠综合久久久久综合网 | 欧美日本免费一区二区三区 | 亚洲日韩中文字幕在线播放 | 国产无套内射久久久国产 | 永久黄网站色视频免费直播 | 精品国产一区二区三区四区 | 宝宝好涨水快流出来免费视频 | 久久99国产综合精品 | www一区二区www免费 | 亚洲s色大片在线观看 | 国产猛烈高潮尖叫视频免费 | 成人精品视频一区二区 | 牲交欧美兽交欧美 | 久久亚洲日韩精品一区二区三区 | 超碰97人人射妻 | 久久国产精品二国产精品 | 乱中年女人伦av三区 | 无遮无挡爽爽免费视频 | 欧美日韩综合一区二区三区 | 国产av无码专区亚洲awww | 野狼第一精品社区 | 亚洲经典千人经典日产 | 亚洲精品www久久久 | 131美女爱做视频 | 人人超人人超碰超国产 | 国产舌乚八伦偷品w中 | 国产极品视觉盛宴 | 美女极度色诱视频国产 | 99久久精品午夜一区二区 | 国产精品无码mv在线观看 | 在线播放免费人成毛片乱码 | 中文字幕无码av波多野吉衣 | 啦啦啦www在线观看免费视频 | 国产精品久久久久久久9999 | 青青草原综合久久大伊人精品 | 特黄特色大片免费播放器图片 | 欧美丰满老熟妇xxxxx性 | yw尤物av无码国产在线观看 | 小鲜肉自慰网站xnxx | 水蜜桃亚洲一二三四在线 | 色婷婷欧美在线播放内射 | 一本一道久久综合久久 | 国产一区二区三区日韩精品 | 欧美性猛交内射兽交老熟妇 | 精品少妇爆乳无码av无码专区 | 日本护士xxxxhd少妇 | 亚洲国产精品无码一区二区三区 | 亚洲熟女一区二区三区 | 亚洲国产成人av在线观看 | 精品久久久久香蕉网 | 97夜夜澡人人爽人人喊中国片 | 日本高清一区免费中文视频 | 国产精品美女久久久网av | 亚洲а∨天堂久久精品2021 | 亚洲の无码国产の无码步美 | 亚洲一区二区三区无码久久 | 一二三四在线观看免费视频 | 2020久久超碰国产精品最新 | 亚洲综合精品香蕉久久网 | 午夜无码区在线观看 | 高潮毛片无遮挡高清免费视频 | 亚洲精品一区二区三区四区五区 | 熟妇人妻无乱码中文字幕 | 久久综合九色综合97网 | 久久亚洲精品中文字幕无男同 | 国产在线精品一区二区三区直播 | 男人扒开女人内裤强吻桶进去 | 国产综合在线观看 | 亚洲一区二区三区香蕉 | 少妇高潮喷潮久久久影院 | 高潮毛片无遮挡高清免费 | 久久亚洲中文字幕精品一区 | 白嫩日本少妇做爰 | av无码久久久久不卡免费网站 | 国产午夜福利100集发布 | 亚洲欧洲日本综合aⅴ在线 | 久久久久免费看成人影片 | 国产亚洲精品久久久久久国模美 | 国产乱人偷精品人妻a片 | 少妇被粗大的猛进出69影院 | 中文字幕精品av一区二区五区 | 亚洲国产欧美国产综合一区 | 无码福利日韩神码福利片 | 欧洲熟妇精品视频 | 精品国产精品久久一区免费式 | 又湿又紧又大又爽a视频国产 | 5858s亚洲色大成网站www | 国产情侣作爱视频免费观看 | 色五月丁香五月综合五月 | 亚洲中文字幕无码中文字在线 | 1000部啪啪未满十八勿入下载 | 久久精品国产大片免费观看 | 亚洲中文字幕无码中文字在线 | 久久久亚洲欧洲日产国码αv | 99久久人妻精品免费二区 | 欧美黑人乱大交 | 狂野欧美性猛交免费视频 | 99久久婷婷国产综合精品青草免费 | 蜜桃无码一区二区三区 | 欧美怡红院免费全部视频 | 国产午夜手机精彩视频 | 精品无码国产一区二区三区av | 狠狠色欧美亚洲狠狠色www | 亚洲爆乳精品无码一区二区三区 | 国产亚洲美女精品久久久2020 | 国内少妇偷人精品视频免费 | 免费播放一区二区三区 | 久久久久久a亚洲欧洲av冫 | 性欧美疯狂xxxxbbbb | 久久www免费人成人片 | 国产suv精品一区二区五 | 麻豆md0077饥渴少妇 | 亚洲国产精品一区二区美利坚 | 中文无码精品a∨在线观看不卡 | 日本一区二区三区免费播放 | av无码久久久久不卡免费网站 | 黑人巨大精品欧美黑寡妇 | 亚洲国产精品久久人人爱 | 成人一区二区免费视频 | 精品人妻av区 | 亚洲精品综合五月久久小说 | 中文字幕 亚洲精品 第1页 | 日产精品高潮呻吟av久久 | 久久久精品人妻久久影视 | 色噜噜亚洲男人的天堂 | 动漫av网站免费观看 | 日日摸夜夜摸狠狠摸婷婷 | 正在播放老肥熟妇露脸 | 久久久久成人片免费观看蜜芽 | 一本色道久久综合狠狠躁 | 乱码av麻豆丝袜熟女系列 | 成 人影片 免费观看 | 日韩无套无码精品 | 丰满人妻精品国产99aⅴ | 亚洲a无码综合a国产av中文 | 国产精品丝袜黑色高跟鞋 | 国语自产偷拍精品视频偷 | 粉嫩少妇内射浓精videos | 亚欧洲精品在线视频免费观看 | 国产亚洲欧美日韩亚洲中文色 | 久久久久国色av免费观看性色 | 亚洲中文字幕av在天堂 | 荫蒂被男人添的好舒服爽免费视频 | 午夜精品一区二区三区在线观看 | 国产精品久久国产三级国 | aⅴ亚洲 日韩 色 图网站 播放 | 午夜熟女插插xx免费视频 | 国产极品美女高潮无套在线观看 | 亚洲精品美女久久久久久久 | 国产精品爱久久久久久久 | 久久综合给合久久狠狠狠97色 | 麻豆果冻传媒2021精品传媒一区下载 | 激情爆乳一区二区三区 | 久久99热只有频精品8 | 国内揄拍国内精品少妇国语 | 无码人妻精品一区二区三区下载 | 亚洲成av人片在线观看无码不卡 | 激情五月综合色婷婷一区二区 | 欧美丰满少妇xxxx性 | 国产在线精品一区二区三区直播 | 国产亚洲精品久久久久久大师 | 亚洲gv猛男gv无码男同 | 久久综合九色综合97网 | 日本一卡二卡不卡视频查询 | 欧美日韩一区二区三区自拍 | 亚洲一区二区三区播放 | 又大又硬又黄的免费视频 | 国产成人精品优优av | 青青青爽视频在线观看 | 国产精品高潮呻吟av久久 | 亚洲综合色区中文字幕 | 国产精品.xx视频.xxtv | 夜夜夜高潮夜夜爽夜夜爰爰 | 成人欧美一区二区三区黑人 | 呦交小u女精品视频 | 男人和女人高潮免费网站 | 日韩少妇白浆无码系列 | 99在线 | 亚洲 | 漂亮人妻洗澡被公强 日日躁 | 精品国产一区二区三区四区 | 亚洲国产精品无码久久久久高潮 | 日韩精品无码一区二区中文字幕 | 男人扒开女人内裤强吻桶进去 | 国产特级毛片aaaaaaa高清 | 国产黑色丝袜在线播放 | 欧洲熟妇色 欧美 | 国产激情综合五月久久 | 日韩无套无码精品 | 爽爽影院免费观看 | 18无码粉嫩小泬无套在线观看 | 无码精品国产va在线观看dvd | 国产无套内射久久久国产 | 麻豆成人精品国产免费 | 极品尤物被啪到呻吟喷水 | 青青草原综合久久大伊人精品 | 亚洲欧美精品aaaaaa片 | 日欧一片内射va在线影院 | 国产综合色产在线精品 | 鲁一鲁av2019在线 | 成人性做爰aaa片免费看不忠 | 国产av无码专区亚洲a∨毛片 | 亚洲男人av香蕉爽爽爽爽 | 人妻天天爽夜夜爽一区二区 | 成人三级无码视频在线观看 | 亚洲精品久久久久中文第一幕 | 无套内谢的新婚少妇国语播放 | 少妇性荡欲午夜性开放视频剧场 | 中文字幕无码乱人伦 | 久久久久se色偷偷亚洲精品av | 精品夜夜澡人妻无码av蜜桃 | 亚洲爆乳精品无码一区二区三区 | 美女黄网站人色视频免费国产 | 国产一区二区三区四区五区加勒比 | 狠狠亚洲超碰狼人久久 | 欧美老妇交乱视频在线观看 | 精品国产一区av天美传媒 | 日本丰满护士爆乳xxxx | 久久久久亚洲精品中文字幕 | 人妻有码中文字幕在线 | 免费无码一区二区三区蜜桃大 | 亚洲精品久久久久久一区二区 | 国产精品手机免费 | 精品国产麻豆免费人成网站 | 大地资源中文第3页 | 婷婷五月综合激情中文字幕 | 久久伊人色av天堂九九小黄鸭 | 色窝窝无码一区二区三区色欲 | 日本爽爽爽爽爽爽在线观看免 | 成人精品一区二区三区中文字幕 | 国产午夜精品一区二区三区嫩草 | 无码av最新清无码专区吞精 | 漂亮人妻洗澡被公强 日日躁 | 强辱丰满人妻hd中文字幕 | 国产凸凹视频一区二区 | 国产亚洲精品久久久久久久久动漫 | 奇米影视7777久久精品 | 日本一区二区三区免费播放 | 高潮毛片无遮挡高清免费视频 | 国产婷婷色一区二区三区在线 | 蜜臀av无码人妻精品 | 亚洲gv猛男gv无码男同 | 色婷婷综合中文久久一本 | 久久久无码中文字幕久... | 色 综合 欧美 亚洲 国产 | 九九在线中文字幕无码 | 99久久99久久免费精品蜜桃 | 久久久久99精品成人片 | 日本www一道久久久免费榴莲 | 男女爱爱好爽视频免费看 | 久久久中文字幕日本无吗 | 久久精品人人做人人综合 | 国产无遮挡又黄又爽免费视频 | 久久综合激激的五月天 | 麻豆国产人妻欲求不满谁演的 | 蜜桃臀无码内射一区二区三区 | 麻豆人妻少妇精品无码专区 | 久久久久久久女国产乱让韩 | 永久免费精品精品永久-夜色 | 久久精品国产99久久6动漫 | 18精品久久久无码午夜福利 | 成人无码视频在线观看网站 | 日本丰满熟妇videos | 成人毛片一区二区 | 国产精品亚洲专区无码不卡 | 在线精品国产一区二区三区 | 中文字幕无码av波多野吉衣 | 欧美野外疯狂做受xxxx高潮 | 久久精品视频在线看15 | 欧美xxxx黑人又粗又长 | 日韩精品乱码av一区二区 | 白嫩日本少妇做爰 | av人摸人人人澡人人超碰下载 | 亚洲成a人一区二区三区 | 国产亚洲欧美日韩亚洲中文色 | 国产香蕉97碰碰久久人人 | 久久综合久久自在自线精品自 | 色婷婷综合激情综在线播放 | 国产办公室秘书无码精品99 | 国精产品一品二品国精品69xx | 中文字幕中文有码在线 | 国产精品怡红院永久免费 | 蜜桃视频插满18在线观看 | 97色伦图片97综合影院 | 久久精品国产精品国产精品污 | 一本大道久久东京热无码av | 中文字幕人妻无码一夲道 | 久久亚洲精品中文字幕无男同 | 无码精品人妻一区二区三区av | 丰满人妻一区二区三区免费视频 | 国产成人无码a区在线观看视频app | 波多野结衣av一区二区全免费观看 | 亚洲一区二区三区香蕉 | 蜜臀aⅴ国产精品久久久国产老师 | 偷窥村妇洗澡毛毛多 | 亚洲精品成a人在线观看 | 欧美变态另类xxxx | 天天燥日日燥 | 色狠狠av一区二区三区 | 欧美野外疯狂做受xxxx高潮 | 2019午夜福利不卡片在线 | 帮老师解开蕾丝奶罩吸乳网站 | 国产成人精品一区二区在线小狼 | 岛国片人妻三上悠亚 | 丰满护士巨好爽好大乳 | 鲁鲁鲁爽爽爽在线视频观看 | 妺妺窝人体色www婷婷 | 中文字幕人妻无码一区二区三区 | 国产精品高潮呻吟av久久4虎 | 国产小呦泬泬99精品 | 性欧美videos高清精品 | 我要看www免费看插插视频 | 色老头在线一区二区三区 | 亚洲中文无码av永久不收费 | 国产精品igao视频网 | 国产午夜视频在线观看 | 久久99精品国产.久久久久 | 欧美一区二区三区视频在线观看 | 美女毛片一区二区三区四区 | 少妇高潮一区二区三区99 | 国产真实伦对白全集 | а√资源新版在线天堂 | 三上悠亚人妻中文字幕在线 | 窝窝午夜理论片影院 | 日本一卡2卡3卡4卡无卡免费网站 国产一区二区三区影院 | 国产成人亚洲综合无码 | 激情内射亚州一区二区三区爱妻 | 久9re热视频这里只有精品 | 日本丰满熟妇videos | 国产电影无码午夜在线播放 | 国产成人精品一区二区在线小狼 | 国产人妻精品一区二区三区不卡 | 国产成人人人97超碰超爽8 | 日韩av无码中文无码电影 | 国产精品毛多多水多 | 又粗又大又硬又长又爽 | 国产综合在线观看 | 99久久精品无码一区二区毛片 | 中文字幕无码免费久久99 | 人人妻人人澡人人爽欧美一区 | 亚洲人成影院在线无码按摩店 | 内射老妇bbwx0c0ck | 精品一区二区不卡无码av | 精品久久久无码中文字幕 | 日韩av无码一区二区三区 | 四虎国产精品免费久久 | √8天堂资源地址中文在线 | 欧美日韩久久久精品a片 | 亚洲毛片av日韩av无码 | 少妇无码av无码专区在线观看 | 18黄暴禁片在线观看 | 人人澡人人妻人人爽人人蜜桃 | 成人性做爰aaa片免费看不忠 | 亚洲熟悉妇女xxx妇女av | 麻花豆传媒剧国产免费mv在线 | 97夜夜澡人人双人人人喊 | 国产精品美女久久久网av | 十八禁视频网站在线观看 | 国产人成高清在线视频99最全资源 | 亚洲色偷偷男人的天堂 | 捆绑白丝粉色jk震动捧喷白浆 | 国产99久久精品一区二区 | 少妇一晚三次一区二区三区 | 久久99国产综合精品 | 扒开双腿疯狂进出爽爽爽视频 | 亚洲 高清 成人 动漫 | 久久久精品456亚洲影院 | 啦啦啦www在线观看免费视频 | 国色天香社区在线视频 | 婷婷丁香六月激情综合啪 | 99久久久国产精品无码免费 | 一个人看的视频www在线 | 亚洲色大成网站www国产 | 国产无套内射久久久国产 | 四十如虎的丰满熟妇啪啪 | 55夜色66夜色国产精品视频 | 国产精品久久久午夜夜伦鲁鲁 | 性欧美牲交xxxxx视频 | 无码人妻av免费一区二区三区 | 婷婷综合久久中文字幕蜜桃三电影 | 日韩亚洲欧美精品综合 | 国产色在线 | 国产 | 中文字幕无码热在线视频 | 久久久久免费看成人影片 | 国产办公室秘书无码精品99 | 少妇无套内谢久久久久 | 人妻少妇精品无码专区二区 | 久久97精品久久久久久久不卡 | 亚洲狠狠色丁香婷婷综合 | 任你躁国产自任一区二区三区 | 国产精品va在线观看无码 | 国产疯狂伦交大片 | 中国女人内谢69xxxx | 无码帝国www无码专区色综合 | 久热国产vs视频在线观看 | 国内综合精品午夜久久资源 | 国产人妖乱国产精品人妖 | 精品无码国产自产拍在线观看蜜 | 老子影院午夜精品无码 | 97久久超碰中文字幕 | 久久久精品国产sm最大网站 | 午夜不卡av免费 一本久久a久久精品vr综合 | 丰满人妻精品国产99aⅴ | 97色伦图片97综合影院 | 综合人妻久久一区二区精品 | 无码人妻黑人中文字幕 | 国产va免费精品观看 | 国产在线精品一区二区三区直播 | 日本又色又爽又黄的a片18禁 | 一本一道久久综合久久 | 久久国产精品精品国产色婷婷 | 1000部啪啪未满十八勿入下载 | 中文字幕无码日韩欧毛 | 亚洲a无码综合a国产av中文 | 狠狠噜狠狠狠狠丁香五月 | 国产超碰人人爽人人做人人添 | 人人澡人人妻人人爽人人蜜桃 | yw尤物av无码国产在线观看 | 四虎4hu永久免费 | 中国女人内谢69xxxxxa片 | 久久久久久九九精品久 | 麻豆av传媒蜜桃天美传媒 | 国产色精品久久人妻 | 久久久久久久人妻无码中文字幕爆 | 欧美精品无码一区二区三区 | 国产精品久久国产三级国 | 国产亚洲精品久久久久久国模美 | 麻豆蜜桃av蜜臀av色欲av | 精品久久8x国产免费观看 | 日日麻批免费40分钟无码 | 蜜臀aⅴ国产精品久久久国产老师 | 亚洲欧美色中文字幕在线 | 国产精品免费大片 | 精品国产一区二区三区四区 | 亚洲日韩乱码中文无码蜜桃臀网站 | 波多野结衣 黑人 | 亚洲一区二区三区四区 | 国产亚洲精品精品国产亚洲综合 | 亚洲精品一区二区三区婷婷月 | 亚洲爆乳大丰满无码专区 | www国产亚洲精品久久久日本 | 无码福利日韩神码福利片 | 国产小呦泬泬99精品 | 老太婆性杂交欧美肥老太 | 人人澡人人透人人爽 | 国产美女精品一区二区三区 | 成人av无码一区二区三区 | 国产精品99爱免费视频 | 玩弄中年熟妇正在播放 | 亚洲啪av永久无码精品放毛片 | 熟女俱乐部五十路六十路av | 又粗又大又硬毛片免费看 | 国产熟女一区二区三区四区五区 | 亚洲熟女一区二区三区 | 亚洲色在线无码国产精品不卡 | 丰满诱人的人妻3 | 黑人巨大精品欧美黑寡妇 | 狠狠综合久久久久综合网 | 中文毛片无遮挡高清免费 | 国产亚洲精品久久久ai换 | 成人精品视频一区二区三区尤物 | 国产两女互慰高潮视频在线观看 | 国内精品人妻无码久久久影院 | 亚洲精品一区二区三区大桥未久 | 色综合久久88色综合天天 | 丰满肥臀大屁股熟妇激情视频 | 中文字幕 人妻熟女 | 蜜桃av抽搐高潮一区二区 | 国产激情无码一区二区 | 国产亚洲精品久久久久久大师 | 最新国产麻豆aⅴ精品无码 | 少妇被粗大的猛进出69影院 | 国产无套内射久久久国产 | 久久久久成人精品免费播放动漫 | 国产精品理论片在线观看 | 色情久久久av熟女人妻网站 | 老子影院午夜精品无码 | 一本精品99久久精品77 | 久久视频在线观看精品 | 色综合视频一区二区三区 | 日日天日日夜日日摸 | 无码免费一区二区三区 | 狂野欧美激情性xxxx | 男女性色大片免费网站 | 国产亚洲视频中文字幕97精品 | 亚洲天堂2017无码 | 亚洲国精产品一二二线 | 国产精品a成v人在线播放 | 国内揄拍国内精品少妇国语 | 激情亚洲一区国产精品 | 国产农村乱对白刺激视频 | 亚洲精品一区二区三区在线观看 | 久久久久99精品成人片 | 玩弄人妻少妇500系列视频 | 免费男性肉肉影院 | 欧美人与善在线com | 久久久国产一区二区三区 | 国产内射老熟女aaaa | 国内精品一区二区三区不卡 | 日日摸天天摸爽爽狠狠97 | 少妇被黑人到高潮喷出白浆 | 亚洲精品一区二区三区在线 | 人妻无码久久精品人妻 | 性色欲网站人妻丰满中文久久不卡 | 无码av中文字幕免费放 | 网友自拍区视频精品 | 大屁股大乳丰满人妻 | 天天做天天爱天天爽综合网 | 国产精品-区区久久久狼 | 亚洲熟妇色xxxxx欧美老妇 | 国产在线精品一区二区高清不卡 | 国产乱人伦偷精品视频 | 中文字幕av无码一区二区三区电影 | 性做久久久久久久久 | 国产乱人伦av在线无码 | 亚洲a无码综合a国产av中文 | 55夜色66夜色国产精品视频 | 伊人久久大香线蕉av一区二区 | 国产精品亚洲专区无码不卡 | 免费观看的无遮挡av | 亚洲日本va中文字幕 | 日韩视频 中文字幕 视频一区 | 中文字幕无码av波多野吉衣 | 免费国产成人高清在线观看网站 | 精品一区二区三区波多野结衣 | 亚洲人亚洲人成电影网站色 | 中文字幕av无码一区二区三区电影 | 亚拍精品一区二区三区探花 | 中国女人内谢69xxxxxa片 | 国产suv精品一区二区五 | 小鲜肉自慰网站xnxx | 久久久精品欧美一区二区免费 | 领导边摸边吃奶边做爽在线观看 | 久精品国产欧美亚洲色aⅴ大片 | 麻花豆传媒剧国产免费mv在线 | 成 人 免费观看网站 | www一区二区www免费 | 亚洲欧洲日本无在线码 | 国产内射老熟女aaaa | 人妻尝试又大又粗久久 | 一本久久a久久精品亚洲 | 麻豆人妻少妇精品无码专区 | 国产激情一区二区三区 | 岛国片人妻三上悠亚 | 双乳奶水饱满少妇呻吟 | 色欲人妻aaaaaaa无码 | 亚洲欧美国产精品专区久久 | 国产精品亚洲lv粉色 | 无码播放一区二区三区 | 300部国产真实乱 | 领导边摸边吃奶边做爽在线观看 | 精品国产精品久久一区免费式 | 蜜桃臀无码内射一区二区三区 | 在线看片无码永久免费视频 | 激情爆乳一区二区三区 | 99久久无码一区人妻 | 精品无人国产偷自产在线 | 成人影院yy111111在线观看 | 欧美日本精品一区二区三区 | 亚洲日韩乱码中文无码蜜桃臀网站 | 亚洲小说图区综合在线 | 国产成人综合在线女婷五月99播放 | 乱人伦人妻中文字幕无码 | 红桃av一区二区三区在线无码av | 国产亚洲精品久久久久久国模美 | 夜精品a片一区二区三区无码白浆 | 国产精品人人妻人人爽 | 女人被爽到呻吟gif动态图视看 | 国内精品久久毛片一区二区 | 久久久精品456亚洲影院 | 国产在线一区二区三区四区五区 | 无码人妻精品一区二区三区不卡 | 免费视频欧美无人区码 | 又黄又爽又色的视频 | 国产超碰人人爽人人做人人添 | 日本乱人伦片中文三区 | 国产精品亚洲а∨无码播放麻豆 | 久久人妻内射无码一区三区 | 亚洲一区二区观看播放 | 欧美大屁股xxxxhd黑色 | 亚洲一区二区三区无码久久 | 精品久久久无码中文字幕 | 人人澡人摸人人添 | 亚洲精品国产品国语在线观看 | 国内精品一区二区三区不卡 | 亚洲一区二区三区播放 | 国产超碰人人爽人人做人人添 | 亚洲日韩乱码中文无码蜜桃臀网站 | 久久午夜无码鲁丝片秋霞 | 伊在人天堂亚洲香蕉精品区 | 双乳奶水饱满少妇呻吟 | 色妞www精品免费视频 | 国产亚洲人成在线播放 | av小次郎收藏 | 国产综合色产在线精品 | 国产乱人无码伦av在线a | 波多野结衣av一区二区全免费观看 | 欧美日韩亚洲国产精品 | 国产高清不卡无码视频 | 亚洲日韩乱码中文无码蜜桃臀网站 | 国色天香社区在线视频 | 久久天天躁狠狠躁夜夜免费观看 | 伊在人天堂亚洲香蕉精品区 | 四虎影视成人永久免费观看视频 | 俺去俺来也www色官网 | 久久久久久a亚洲欧洲av冫 | 无码毛片视频一区二区本码 | 牲交欧美兽交欧美 | 无码任你躁久久久久久久 | 亚洲国产精品毛片av不卡在线 | 乱人伦人妻中文字幕无码 | 久久久久99精品国产片 | 久久精品国产一区二区三区肥胖 | 少妇愉情理伦片bd | 亚洲欧洲日本综合aⅴ在线 | 美女毛片一区二区三区四区 | 国产另类ts人妖一区二区 | 妺妺窝人体色www在线小说 | 伊在人天堂亚洲香蕉精品区 | 成人欧美一区二区三区黑人免费 | 中文字幕乱码亚洲无线三区 | 无码乱肉视频免费大全合集 | 亚洲综合另类小说色区 | 野外少妇愉情中文字幕 | 亚洲人成无码网www | 亚洲精品久久久久avwww潮水 | 青青青手机频在线观看 | 国产成人无码av片在线观看不卡 | 亚洲精品综合五月久久小说 | 成人欧美一区二区三区黑人免费 | 少妇激情av一区二区 | 狠狠cao日日穞夜夜穞av | 永久免费精品精品永久-夜色 | 狂野欧美性猛交免费视频 | 18黄暴禁片在线观看 | 内射后入在线观看一区 | 亚洲综合无码一区二区三区 | www国产亚洲精品久久久日本 | 午夜精品一区二区三区在线观看 | 无码纯肉视频在线观看 | 国产精品丝袜黑色高跟鞋 | 亚洲理论电影在线观看 | a在线亚洲男人的天堂 | 国产婷婷色一区二区三区在线 | 久久精品无码一区二区三区 | 国产亚洲精品精品国产亚洲综合 | 免费无码一区二区三区蜜桃大 | 欧美精品国产综合久久 | 久久99精品久久久久久 | 中文字幕久久久久人妻 | 水蜜桃av无码 | 全黄性性激高免费视频 | 亚洲综合色区中文字幕 | 性做久久久久久久久 | 十八禁视频网站在线观看 | 亚洲成色www久久网站 | 国产麻豆精品精东影业av网站 | 中文字幕日韩精品一区二区三区 | 亚洲国产精品无码一区二区三区 | 国产超碰人人爽人人做人人添 | 久久久精品456亚洲影院 | 麻豆md0077饥渴少妇 | 内射巨臀欧美在线视频 | 中文字幕av日韩精品一区二区 | 日韩少妇内射免费播放 | 国产精品a成v人在线播放 | 狠狠色噜噜狠狠狠狠7777米奇 | 内射白嫩少妇超碰 | 久久久久99精品国产片 | 午夜性刺激在线视频免费 | 粉嫩少妇内射浓精videos | 亚洲aⅴ无码成人网站国产app | 国产高潮视频在线观看 | 乱中年女人伦av三区 | 精品厕所偷拍各类美女tp嘘嘘 | 国产精品国产三级国产专播 | 欧美人与牲动交xxxx | 色窝窝无码一区二区三区色欲 | 中文字幕精品av一区二区五区 | av无码电影一区二区三区 | 国产免费久久精品国产传媒 | 国产午夜亚洲精品不卡 | 色一情一乱一伦一区二区三欧美 | 97人妻精品一区二区三区 | 成人女人看片免费视频放人 | 亚洲精品国产精品乱码视色 | ass日本丰满熟妇pics | 亚洲一区二区三区国产精华液 | 扒开双腿吃奶呻吟做受视频 | 丰满少妇弄高潮了www | 欧美大屁股xxxxhd黑色 | 伊人久久大香线焦av综合影院 | 99久久无码一区人妻 | 久久久久成人片免费观看蜜芽 | 动漫av网站免费观看 | 久久国产自偷自偷免费一区调 | 波多野结衣乳巨码无在线观看 | 中文久久乱码一区二区 | 无码国产激情在线观看 | 双乳奶水饱满少妇呻吟 | 亚洲中文字幕成人无码 | 在线观看国产一区二区三区 | 无码人妻丰满熟妇区毛片18 | 亚洲欧美精品aaaaaa片 | 国产手机在线αⅴ片无码观看 | 中文字幕日韩精品一区二区三区 | 久青草影院在线观看国产 | 亚洲无人区午夜福利码高清完整版 | 97精品国产97久久久久久免费 | 日韩精品无码一区二区中文字幕 | 亚洲成a人片在线观看无码3d | 国产suv精品一区二区五 | 久久久久久亚洲精品a片成人 | 精品成在人线av无码免费看 | 成熟女人特级毛片www免费 | 高中生自慰www网站 | 97精品人妻一区二区三区香蕉 | 亚洲国产精品久久人人爱 | 亚洲色在线无码国产精品不卡 | 狂野欧美激情性xxxx | 99er热精品视频 | 亚洲阿v天堂在线 | 十八禁视频网站在线观看 | 男人的天堂2018无码 | 乱码av麻豆丝袜熟女系列 | 丰满人妻一区二区三区免费视频 | 国产精品久久久久久无码 | 亚洲经典千人经典日产 | 国产真人无遮挡作爱免费视频 | 人妻aⅴ无码一区二区三区 | 对白脏话肉麻粗话av | 日日橹狠狠爱欧美视频 | 久久99精品国产麻豆 | 高潮毛片无遮挡高清免费 | 免费无码的av片在线观看 | 亚洲精品国产a久久久久久 | 久久综合给合久久狠狠狠97色 | 国产超碰人人爽人人做人人添 | 精品国产一区二区三区四区 | 人人妻在人人 | www成人国产高清内射 | 国产精品亚洲一区二区三区喷水 | 小sao货水好多真紧h无码视频 | 成年美女黄网站色大免费视频 | 无码纯肉视频在线观看 | 婷婷六月久久综合丁香 | 国产精品久久久久9999小说 | 偷窥日本少妇撒尿chinese | 日韩人妻无码一区二区三区久久99 | 天天躁日日躁狠狠躁免费麻豆 | 六十路熟妇乱子伦 | 精品无码国产一区二区三区av | 女人被爽到呻吟gif动态图视看 | 最新版天堂资源中文官网 | 亚洲熟妇自偷自拍另类 | 中文字幕人成乱码熟女app | 国产成人无码午夜视频在线观看 | 亚洲国产精品久久人人爱 | 人妻少妇被猛烈进入中文字幕 | 欧美日韩一区二区三区自拍 | 国产偷抇久久精品a片69 | 无码中文字幕色专区 | 精品夜夜澡人妻无码av蜜桃 | 亚洲中文字幕在线无码一区二区 | 国产人妻人伦精品1国产丝袜 | 亚洲理论电影在线观看 | 97久久国产亚洲精品超碰热 | 亚洲а∨天堂久久精品2021 | 久久99精品久久久久婷婷 | 波多野结衣乳巨码无在线观看 | 国产三级久久久精品麻豆三级 | 国产精品美女久久久网av | 少妇人妻av毛片在线看 | 日日橹狠狠爱欧美视频 | 久久精品国产一区二区三区 | 撕开奶罩揉吮奶头视频 | 国产日产欧产精品精品app | 日韩精品无码一区二区中文字幕 | 欧美熟妇另类久久久久久不卡 | 欧美成人家庭影院 | 在线观看欧美一区二区三区 | 六月丁香婷婷色狠狠久久 | 又大又黄又粗又爽的免费视频 | 高潮毛片无遮挡高清免费视频 | 暴力强奷在线播放无码 | 亚洲欧洲无卡二区视頻 | 亚洲经典千人经典日产 | 日韩成人一区二区三区在线观看 | 国产乱人偷精品人妻a片 | 男女性色大片免费网站 | 欧美freesex黑人又粗又大 | 最近的中文字幕在线看视频 | 国产亚洲人成a在线v网站 | 麻豆精产国品 | 欧美丰满熟妇xxxx性ppx人交 | 人妻夜夜爽天天爽三区 | 亚洲の无码国产の无码步美 | 18禁止看的免费污网站 | 亚洲国产精品一区二区第一页 | 久久精品视频在线看15 | 久久国产劲爆∧v内射 | 亚洲爆乳精品无码一区二区三区 | 九月婷婷人人澡人人添人人爽 | 夜夜夜高潮夜夜爽夜夜爰爰 | 国产美女精品一区二区三区 | 亚洲综合另类小说色区 | 亚洲成在人网站无码天堂 | 久热国产vs视频在线观看 | 亚洲精品一区二区三区在线观看 | 日本精品少妇一区二区三区 | 狂野欧美性猛交免费视频 | 久久99精品国产.久久久久 | 欧美大屁股xxxxhd黑色 | 久久久久久亚洲精品a片成人 | 欧美日本日韩 | 人人妻人人澡人人爽精品欧美 | 亚洲啪av永久无码精品放毛片 | 国产成人无码专区 | 久9re热视频这里只有精品 | 无码帝国www无码专区色综合 | 国产精品国产三级国产专播 | 成人欧美一区二区三区黑人 | 精品久久久无码中文字幕 | 欧美激情综合亚洲一二区 | 日本一本二本三区免费 | 中文字幕日产无线码一区 | 国产精品久久久久影院嫩草 | 77777熟女视频在线观看 а天堂中文在线官网 | 久久国语露脸国产精品电影 | 国产av无码专区亚洲a∨毛片 | www国产亚洲精品久久久日本 | 波多野42部无码喷潮在线 | 国产一区二区三区四区五区加勒比 | 高潮毛片无遮挡高清免费视频 | 高中生自慰www网站 | 国产偷国产偷精品高清尤物 | 亚洲精品久久久久中文第一幕 | 四十如虎的丰满熟妇啪啪 | 亚洲欧美日韩国产精品一区二区 | 欧美老妇交乱视频在线观看 | 欧美老人巨大xxxx做受 | 国产精品.xx视频.xxtv | 国产激情无码一区二区 | 激情五月综合色婷婷一区二区 | 女人被男人躁得好爽免费视频 | 色老头在线一区二区三区 | 成人试看120秒体验区 | 欧美 日韩 亚洲 在线 | 欧美精品国产综合久久 | 亚洲欧洲无卡二区视頻 | 国内少妇偷人精品视频免费 | 无码午夜成人1000部免费视频 | 久久熟妇人妻午夜寂寞影院 | 亚洲小说图区综合在线 | 无码乱肉视频免费大全合集 | 国产午夜亚洲精品不卡下载 | 国产热a欧美热a在线视频 | 国产成人无码午夜视频在线观看 | 久久久久成人片免费观看蜜芽 | 欧美人与动性行为视频 | 久久久久国色av免费观看性色 | 乌克兰少妇性做爰 | 人妻无码αv中文字幕久久琪琪布 | 麻豆人妻少妇精品无码专区 | 久久久亚洲欧洲日产国码αv | 亚洲色欲色欲欲www在线 | 天天av天天av天天透 | 中文字幕人妻无码一夲道 | 丰满肥臀大屁股熟妇激情视频 | 波多野结衣av一区二区全免费观看 | 精品国产aⅴ无码一区二区 | 人人爽人人澡人人人妻 | 人妻少妇精品无码专区动漫 | 久久久久免费精品国产 | 麻豆果冻传媒2021精品传媒一区下载 | 欧美 丝袜 自拍 制服 另类 | 亚洲日韩一区二区三区 | 亚洲综合精品香蕉久久网 | 欧美xxxx黑人又粗又长 | 一本久久a久久精品亚洲 | 久久99精品久久久久久动态图 | 欧美精品无码一区二区三区 | 高中生自慰www网站 | 麻豆精产国品 | 蜜臀av在线观看 在线欧美精品一区二区三区 | 福利一区二区三区视频在线观看 | 偷窥日本少妇撒尿chinese | 狠狠色欧美亚洲狠狠色www | 一本久道高清无码视频 | 性色欲网站人妻丰满中文久久不卡 | 亚洲精品鲁一鲁一区二区三区 | 国产精品毛多多水多 | 国语自产偷拍精品视频偷 | 亚洲欧美日韩综合久久久 | 伦伦影院午夜理论片 | 未满成年国产在线观看 | 国产人妻人伦精品1国产丝袜 | 国产农村乱对白刺激视频 | 国产精品久久久久久亚洲影视内衣 | 亚洲国产精品久久人人爱 | 国产成人一区二区三区在线观看 | 纯爱无遮挡h肉动漫在线播放 | 亚洲s色大片在线观看 | 老熟妇仑乱视频一区二区 | 麻豆蜜桃av蜜臀av色欲av | 97精品国产97久久久久久免费 | 国产热a欧美热a在线视频 | 欧美性生交活xxxxxdddd | 丁香啪啪综合成人亚洲 | 亚洲午夜久久久影院 | 久久午夜无码鲁丝片午夜精品 | 强伦人妻一区二区三区视频18 | 亚洲日韩乱码中文无码蜜桃臀网站 | 精品无码av一区二区三区 | 精品久久久久香蕉网 | 无套内谢的新婚少妇国语播放 | 午夜熟女插插xx免费视频 | 国产又爽又猛又粗的视频a片 | 少妇太爽了在线观看 | 好男人www社区 | 极品嫩模高潮叫床 | 色噜噜亚洲男人的天堂 | 精品国产精品久久一区免费式 | 少妇无码av无码专区在线观看 | 夫妻免费无码v看片 | 无码国内精品人妻少妇 | 男人扒开女人内裤强吻桶进去 | 亚洲日韩乱码中文无码蜜桃臀网站 | 99久久人妻精品免费一区 | 爽爽影院免费观看 | 精品无码成人片一区二区98 | 无码国产色欲xxxxx视频 | 国产成人综合色在线观看网站 | 性欧美牲交在线视频 | 久久国产精品二国产精品 | 久久久精品456亚洲影院 | 午夜男女很黄的视频 | 欧美人与牲动交xxxx | 免费国产成人高清在线观看网站 | 性欧美熟妇videofreesex | 99久久99久久免费精品蜜桃 | 国产欧美精品一区二区三区 | 偷窥日本少妇撒尿chinese | 日本护士毛茸茸高潮 | 日韩亚洲欧美精品综合 | 久久精品视频在线看15 | 亚洲理论电影在线观看 | 色欲久久久天天天综合网精品 | 国产69精品久久久久app下载 | 精品国产aⅴ无码一区二区 | 久久人人爽人人爽人人片av高清 | 成人片黄网站色大片免费观看 | 日本熟妇人妻xxxxx人hd | 亚洲国产精品一区二区美利坚 | 日韩少妇白浆无码系列 | 小鲜肉自慰网站xnxx | 日韩少妇白浆无码系列 | 亚洲成av人片天堂网无码】 | 国产无套内射久久久国产 | 自拍偷自拍亚洲精品被多人伦好爽 | 在线成人www免费观看视频 | 成人免费视频一区二区 | 欧美xxxx黑人又粗又长 | 精品成在人线av无码免费看 | 精品人妻av区 | 无码播放一区二区三区 | 国产极品视觉盛宴 | 丝袜 中出 制服 人妻 美腿 | 久久久久人妻一区精品色欧美 | 日产精品高潮呻吟av久久 | 精品无码国产一区二区三区av | 免费乱码人妻系列无码专区 | 999久久久国产精品消防器材 | 大乳丰满人妻中文字幕日本 | 东京热无码av男人的天堂 | 夜夜影院未满十八勿进 | 久久久久久亚洲精品a片成人 | 久久久中文久久久无码 | 动漫av一区二区在线观看 | 国产精品第一国产精品 | 国产一精品一av一免费 | 狠狠亚洲超碰狼人久久 | 国产色精品久久人妻 | 中文字幕无码热在线视频 | 娇妻被黑人粗大高潮白浆 | 午夜时刻免费入口 | 午夜精品久久久久久久 | 牲欲强的熟妇农村老妇女视频 | 东京热一精品无码av | 国产美女极度色诱视频www | 亚洲精品一区二区三区婷婷月 | 领导边摸边吃奶边做爽在线观看 | 国产无套粉嫩白浆在线 | 国产午夜精品一区二区三区嫩草 | 中文字幕无码av波多野吉衣 | 亚洲理论电影在线观看 | 少妇无码av无码专区在线观看 | 亚洲成a人片在线观看无码 | 午夜精品一区二区三区的区别 | 欧美黑人性暴力猛交喷水 | 色综合久久88色综合天天 | 日本精品久久久久中文字幕 | 久久国语露脸国产精品电影 | 国模大胆一区二区三区 | 亚洲精品久久久久avwww潮水 | 久久视频在线观看精品 | 国产亚洲美女精品久久久2020 | 天堂一区人妻无码 | 精品国产青草久久久久福利 | 国产精品第一国产精品 | 无码av岛国片在线播放 | 亚洲va中文字幕无码久久不卡 | 在线播放亚洲第一字幕 | 国产精品第一区揄拍无码 | 亚洲一区二区三区香蕉 | 精品偷自拍另类在线观看 | 国产香蕉尹人视频在线 | 久久人人爽人人爽人人片av高清 | 无码一区二区三区在线观看 | 成人影院yy111111在线观看 | 国产av无码专区亚洲a∨毛片 | 老子影院午夜精品无码 | 国产又粗又硬又大爽黄老大爷视 | а√天堂www在线天堂小说 | 国产人妻人伦精品 | 无码人妻丰满熟妇区毛片18 | 人妻天天爽夜夜爽一区二区 | 好男人www社区 | 久久国产36精品色熟妇 | 亚洲一区二区三区在线观看网站 | 亚洲国产av精品一区二区蜜芽 | 免费无码一区二区三区蜜桃大 | 成人免费视频在线观看 | 精品一区二区不卡无码av | 中文字幕乱码亚洲无线三区 | 东北女人啪啪对白 | 国产乡下妇女做爰 | 日日摸日日碰夜夜爽av | 亚洲s色大片在线观看 | 爆乳一区二区三区无码 | 欧洲vodafone精品性 | 亚洲国产精品久久久天堂 | 无码播放一区二区三区 | 精品无码成人片一区二区98 | 日韩精品无码一区二区中文字幕 | 精品国产精品久久一区免费式 | 日韩少妇白浆无码系列 | 色 综合 欧美 亚洲 国产 | 狠狠色色综合网站 | 3d动漫精品啪啪一区二区中 | 丰满人妻翻云覆雨呻吟视频 | 国产精品资源一区二区 | 极品尤物被啪到呻吟喷水 | 无码人妻丰满熟妇区五十路百度 | 97夜夜澡人人爽人人喊中国片 | 久久精品人人做人人综合试看 | 国产成人综合色在线观看网站 | 国精产品一品二品国精品69xx | 亚洲七七久久桃花影院 | 亚洲毛片av日韩av无码 | 乱中年女人伦av三区 | 国产成人精品视频ⅴa片软件竹菊 | 中文字幕无码视频专区 | 老熟妇仑乱视频一区二区 | 一本久久a久久精品vr综合 | 红桃av一区二区三区在线无码av | 亚洲国产av精品一区二区蜜芽 | 国产精品无码一区二区三区不卡 | 日韩精品一区二区av在线 | 99久久久无码国产aaa精品 | 国产农村妇女aaaaa视频 撕开奶罩揉吮奶头视频 | 久久伊人色av天堂九九小黄鸭 | 亚洲精品国产精品乱码不卡 | 亚洲一区二区三区香蕉 | 天堂一区人妻无码 | 国产女主播喷水视频在线观看 | 乱码av麻豆丝袜熟女系列 | 蜜臀av在线播放 久久综合激激的五月天 | 在线观看国产一区二区三区 | 欧洲精品码一区二区三区免费看 | 老头边吃奶边弄进去呻吟 | 波多野结衣高清一区二区三区 | 国产亚洲日韩欧美另类第八页 | 强奷人妻日本中文字幕 | 亚洲狠狠婷婷综合久久 | 亚洲娇小与黑人巨大交 | 波多野结衣高清一区二区三区 | 国产午夜亚洲精品不卡 | 国产偷自视频区视频 | 人妻少妇被猛烈进入中文字幕 | 日本免费一区二区三区最新 | 国产精品久免费的黄网站 | 国产熟妇高潮叫床视频播放 | 国产猛烈高潮尖叫视频免费 | 一本色道婷婷久久欧美 | 国产精品欧美成人 | 一二三四社区在线中文视频 | 国产成人无码午夜视频在线观看 | 天堂无码人妻精品一区二区三区 | 国产三级久久久精品麻豆三级 | 性生交大片免费看女人按摩摩 | 国产人妻精品午夜福利免费 | 国产精品亚洲综合色区韩国 | 强开小婷嫩苞又嫩又紧视频 | 国产精品久久久一区二区三区 | 久久99精品国产.久久久久 | 国产精品沙发午睡系列 | 97久久国产亚洲精品超碰热 |