- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
https://github.com/lminhtm/LMDropdownView
如何在 NSUserDefault 中保存最后选择的单元格?重新打开应用程序时,应保留选择。
目前,无论何时打开应用程序,都会选择默认单元格。
- (void)viewDidLoad
{
[super viewDidLoad];
self.mapTypes = @[@"Standard", @"Satellite", @"Hybrid"];
self.currentMapTypeIndex = 0;
self.dropPinButton.layer.cornerRadius = 5;
self.removeAllPinsButton.layer.cornerRadius = 5;
self.moreButton.layer.cornerRadius = 5;
self.moreButton.layer.shadowOffset = CGSizeZero;
self.moreButton.layer.shadowOpacity = 0.5;
self.moreButton.layer.shadowRadius = 1.0;
}
- (void)viewDidLayoutSubviews
{
[super viewDidLayoutSubviews];
self.menuTableView.frame = CGRectMake(CGRectGetMinX(self.menuTableView.frame),
CGRectGetMinY(self.menuTableView.frame),
CGRectGetWidth(self.view.bounds),
MIN(CGRectGetHeight(self.view.bounds) - 50, self.mapTypes.count * 50));
self.moreBottomView.frame = CGRectMake(CGRectGetMinX(self.moreBottomView.frame),
CGRectGetMinY(self.moreBottomView.frame),
CGRectGetWidth(self.view.bounds),
CGRectGetHeight(self.moreBottomView.bounds));
}
#pragma mark - DROPDOWN VIEW
- (void)showDropDownViewFromDirection:(LMDropdownViewDirection)direction
{
// Init dropdown view
if (!self.dropdownView) {
self.dropdownView = [LMDropdownView dropdownView];
self.dropdownView.delegate = self;
// Customize Dropdown style
self.dropdownView.closedScale = 0.85;
self.dropdownView.blurRadius = 5;
self.dropdownView.blackMaskAlpha = 0.5;
self.dropdownView.animationDuration = 0.5;
self.dropdownView.animationBounceHeight = 20;
}
self.dropdownView.direction = direction;
// Show/hide dropdown view
if ([self.dropdownView isOpen]) {
[self.dropdownView hide];
}
else {
switch (direction) {
case LMDropdownViewDirectionTop: {
self.dropdownView.contentBackgroundColor = [UIColor colorWithRed:40.0/255 green:196.0/255 blue:80.0/255 alpha:1];
[self.dropdownView showFromNavigationController:self.navigationController
withContentView:_menuTableView];
break;
}
case LMDropdownViewDirectionBottom: {
self.dropdownView.contentBackgroundColor = [UIColor whiteColor];
CGPoint origin = CGPointMake(0, CGRectGetHeight(self.navigationController.view.bounds) - CGRectGetHeight(self.moreBottomView.bounds));
[self.dropdownView showInView:self.navigationController.view
withContentView:self.moreBottomView
atOrigin:origin];
break;
}
default:
break;
}
}
}
- (void)dropdownViewWillShow:(LMDropdownView *)dropdownView
{
NSLog(@"Dropdown view will show");
}
- (void)dropdownViewDidShow:(LMDropdownView *)dropdownView
{
NSLog(@"Dropdown view did show");
}
- (void)dropdownViewWillHide:(LMDropdownView *)dropdownView
{
NSLog(@"Dropdown view will hide");
}
- (void)dropdownViewDidHide:(LMDropdownView *)dropdownView
{
NSLog(@"Dropdown view did hide");
switch (self.currentMapTypeIndex)
{
case 0:
self.mapView.mapType = MKMapTypeStandard;
break;
case 1:
self.mapView.mapType = MKMapTypeSatellite;
break;
case 2:
self.mapView.mapType = MKMapTypeHybrid;
break;
default:
break;
}
}
#pragma mark - MENU TABLE VIEW
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
return 1;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return [self.mapTypes count];
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
LMMenuCell *cell = [tableView dequeueReusableCellWithIdentifier:@"menuCell"];
if (!cell) {
cell = [[LMMenuCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"menuCell"];
}
cell.menuItemLabel.text = [self.mapTypes objectAtIndex:indexPath.row];
cell.selectedMarkView.hidden = (indexPath.row != self.currentMapTypeIndex);
return cell;
}
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
[tableView deselectRowAtIndexPath:indexPath animated:NO];
self.currentMapTypeIndex = indexPath.row;
[self.dropdownView hide];
}
#pragma mark - MAP VIEW DELEGATE
- (MKAnnotationView *)mapView:(MKMapView *)mapView viewForAnnotation:(id<MKAnnotation>)annotation
{
MKPinAnnotationView *pinAnnotationView = [[MKPinAnnotationView alloc] initWithAnnotation:annotation reuseIdentifier:@"current"];
pinAnnotationView.animatesDrop = YES;
pinAnnotationView.canShowCallout = YES;
pinAnnotationView.pinColor = MKPinAnnotationColorGreen;
return pinAnnotationView;
}
#pragma mark - EVENTS
- (IBAction)titleButtonTapped:(id)sender
{
[self.menuTableView reloadData];
[self showDropDownViewFromDirection:LMDropdownViewDirectionTop];
}
- (IBAction)moreButtonTapped:(id)sender
{
[self showDropDownViewFromDirection:LMDropdownViewDirectionBottom];
}
- (IBAction)removeAllPinsButtonTapped:(id)sender
{
[self.dropdownView hide];
dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(self.dropdownView.animationDuration * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
[self.mapView removeAnnotations:self.mapView.annotations];
});
}
- (IBAction)dropPinButtonTapped:(id)sender
{
[self.dropdownView hide];
dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(self.dropdownView.animationDuration * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
MKPointAnnotation *point = [[MKPointAnnotation alloc] init];
point.coordinate = [self.mapView convertPoint:self.mapView.center toCoordinateFromView:self.mapView];
point.title = @"LMDropdownView";
[self.mapView addAnnotation:point];
});
}
最佳答案
您在 didSelectRowAtIndexPath
中获得选定的索引 .. 将其存储在 userdefaults 中
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
[tableView deselectRowAtIndexPath:indexPath animated:NO];
self.currentMapTypeIndex = indexPath.row;
[[NSUserDefaults standardUserDefaults] setInteger:self.currentMapTypeIndex forKey:@"selected_map_type"];
[[NSUserDefaults standardUserDefaults]synchronize];
[self.dropdownView hide];
}
要检索它 .. 在 viewDidLoad 中
- (void)viewDidLoad
{
[super viewDidLoad];
self.mapTypes = @[@"Standard", @"Satellite", @"Hybrid"];
self.currentMapTypeIndex= [[[NSUserDefaults standardUserDefaults] valueForKey:@"selected_map_type"]integerValue] ? [[[NSUserDefaults standardUserDefaults] valueForKey:@"selected_map_type"]integerValue] : 0;
// ... continue with your code ...
}
关于ios - 如何维护 NSUserDefaults 中的单元格选择?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36215165/
我们已经在我的工作场所使用 SVN 几年了,自从我们安装它以来,除了更新和备份之外,我们真的没有对其进行任何类型的维护。我们还应该做些什么来维护 SVN,或者我们已经做了所有我们真正需要做的事情吗?
正则表达式模式如下: ".*/.*/.*/.*/.*/.*/(.*)-\d{2}\.\d{2}\.\d{2}.\d{4}.*" 确实很难维护。 我想知道,有没有这样的东西: ".*/.*/.*/.*/
我已经搜索了一些,但没有找到任何对我有帮助的问题/答案。问题是我的 jQuery 函数调用变得太大而无法维护。我想知道我是否应该进行更多重构,或者是否有更好的方法来完成所有这些调用。当我进行一次调用时
我在 mySql 中有一个记录表。我需要按照用户指定的方式为它们维护订单。所以我添加了一个“位置”列。 当我移动特定记录时更新所有记录的 SQL 语句是什么?我有类似的东西: UPDATE items
我正在使用 go channels 作为类似队列的机制,这非常适合我。我正在为每个用户打开这些类似队列的 channel 之一,并为这些 channel 中的每一个都有一个 for-range 循环。
使用 docker,您可以非常好地基于其他图像创建图像。例如,您可以制作一个镜像 Java-jdk7(基于最新的 Ubuntu LTS),并在此基础上创建镜像 elastic-search 和 tom
我正在用 Bash 编写脚本。 我的关联数组有问题,当我像这样在我的数组中放置一条记录时: declare -A arr_list_people_name 我将文本放入循环关联数组的方式(将文本排序)
我目前正在开发一个系统,该系统需要在没有可用互联网连接的情况下安装 python(或者至少我不能假设有可用的互联网连接), 我想知道维护 PIP 存储库的间接费用是多少,而且这样的存储库也可能会满足系
我正在考虑使用 Chrome 扩展的国际化支持,如 here 所述. 建议的翻译方法是先创建英文 messages.json 文件,然后将其复制并翻译成给定的语言。 我的问题是,这对于初始翻译来说工作
我想在(自托管)bitbucket 服务器中克隆 github 存储库,并不时从 github 存储库中提取最新更改。在我们的克隆中,我们将做一些永远不会离开我们的存储库的实验性内容。 为了显示;对于
我的应用程序基于银行域,需要 session 处理。当应用程序空闲时(应用程序打开后没有任何触摸事件)必须在后台计算时间。 当应用程序进入前台时,我处理 session 维护以及 AppDelegat
我可以保持 UISegmentViewControl 段的选定状态吗?即,即使用户选择了另一个段,也可以保持一个段显示为选中状态?我似乎在任何地方都找不到任何可以做到这一点的东西!! 最佳答案 这是不
我的要求:我想将登录详细信息(电子邮件、密码)发送到服务器,必须保持有效用户名的 session 。 如何使用 iphone SDK 的“NSURLConnection”创建和维护 session ?
就像Carl's question over here我想问你(因为我自己找不到 :( ) 删除既不是静态也不是动态(例如通过反射)使用的程序集引用是否有任何好处。 最佳答案 除了清理项目之外,删除未
我使用的是Bootstrap 3。我目前有2个页面,一个是查看页面,一个是编辑页面。两个页面都有许多导航选项卡,例如 id= tab1、tab2、tab3。 我想要实现的是,当我在查看页面的 tab2
我正在创建 Chrome 应用程序,我希望我的用户在首次进入应用程序时登录或创建用户。 目标: 在 Chrome 打包的应用程序上维护登录状态。 问题: Cookie - Chrome 打包的应用程序
我有arm模板来使用资源及其设置重新创建资源组。这工作得很好。 用例: 一些开发人员访问 Azure 门户并更新某些资源的某些设置。有没有办法获得可以应用于我的模板的精确更改以使这些更改生效? (更新
我有一个包含三个组合框的表单,一个代表该月(可能的)31 天,第二个代表代表月份的 12 个数字,第三个代表与 future 五年相对应的年份值。 我将它们连接在一起形成一个日期 TheDay = C
我有一个打开多个 JIF 的应用程序,但我只想创建 JIF 的单个实例,因此我使用这些函数来检查这一点,并在按下某个键后使用 dispose 关闭 JIF(JDesktopPane. getSelec
我想为一个项目制作一个帐户屏幕,但我对 GUI 还很陌生。这是我第一次使用 JComboBox,但遇到了一些麻烦。我基本上想将 JComboBox 放置在一个盒子内,这将成为我的背景图像的一部分。我尝
我是一名优秀的程序员,十分优秀!