UIStatusBarStyle 状态栏
UIStatusBarAnimation 状态栏过渡效果
UIInterfaceOrientation 界面旋转
UIInterfaceOrientationMask 为了支持多种UIInterfaceOrientation
UIDeviceOrientation 是机器硬件的当前旋转方向 这个你只能取值 不能设置
UIInterfaceOrientation 是你程序界面的当前旋转方向 这个可以设置
UIRemoteNotificationType 远程通知
UIApplicationState app状态 device token,即设备令牌,不是体系独一标识(见获取iOS设备的根蒂根基信息),须要在应用启动时创议到apple办事器恳求,注册本身的设备和应用,并获得这个device token。
UIUserInterfaceLayoutDirection 界面布局方向
id <UIApplicationDelegate> _delegate;
UIEvent *_event;
UIEvent *_touchesEvent;
UIEvent *_motionEvent;
UIEvent *_remoteControlEvent;
UIAlertView *_editAlertView;
UIStatusBar *_statusBar;
UIStatusBarStyle _statusBarRequestedStyle;
UITableView
UITableViewStyle
UITableViewScrollPosition 滚动位置
UITableViewRowAnimation 添加删除动画效果
- (UITableViewCellAccessoryType)tableView:(UITableView *)tableView accessoryTypeForRowWithIndexPath:(NSIndexPath *)indexPath;
- (void)tableView:(UITableView *)tableView accessoryButtonTappedForRowWithIndexPath:(NSIndexPath *)indexPath;
右侧箭头 相关。- (NSIndexPath *)tableView:(UITableView *)tableView willSelectRowAtIndexPath:(NSIndexPath *)indexPath;
- (NSIndexPath *)tableView:(UITableView *)tableView willDeselectRowAtIndexPath:(NSIndexPath *)indexPathNS_AVAILABLE_IOS(3_0);
// Called after the user changes the selection.
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath;
- (void)tableView:(UITableView *)tableView didDeselectRowAtIndexPath:(NSIndexPath *)indexPath;
选中与取消选中- (NSInteger)tableView:(UITableView *)tableView indentationLevelForRowAtIndexPath:(NSIndexPath *)indexPath;
设置行缩进
dequeueReusableCellWithIdentifier:(NSString *)identifier forIndexPath:(NSIndexPath *)indexPath
- (NSArray *)sectionIndexTitlesForTableView:(UITableView *)tableView;
- (NSInteger)tableView:(UITableView *)tableView sectionForSectionIndexTitle:(NSString *)title atIndex:(NSInteger)index;
本文详细介绍了iOS开发中UI状态栏样式、旋转控制、远程通知等概念,并深入探讨了UITableView的使用方法,包括数据源、代理方法及常用属性。
654

被折叠的 条评论
为什么被折叠?



