- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
所以我在 UICollectionView
中有一个项目列表,并且有一个 UIButton
,它是默认的并且选择了 UIImage
设置为一颗浅灰色的心和一颗黑色的心。
我的目标是允许用户将项目添加到收藏夹列表中。我在数据库中添加了一个名为“favourite”的列,它是 boolean 类型。
客户在商品的单元格中敲击心脏。触发一个方法,该方法使用作为 UIButton
的 titleLabel 传递的项目的对象 ID 从数据库中获取项目并将收藏夹列的 bool 值更新为“True”。
收藏按钮的方法:
- (void)addFavouriteButtonTapped:(UIButton *)sender
{
NSLog(@"add to favourites button tapped %@", [[sender titleLabel] text]);
// Set data base favaourite status to 1 (yes)
PFQuery *query = [PFQuery queryWithClassName:@"Garments"];
[query getObjectInBackgroundWithId:[[sender titleLabel] text] block:^(PFObject *object, NSError *error) {
object[@"favourite"] = @YES;
[object saveInBackgroundWithBlock:^(BOOL succeeded, NSError *error) {
if (!error) {
[[[UIAlertView alloc] initWithTitle:@"Add Favouite"
message:@"Item successfully added to favourites"
delegate:_thisController
cancelButtonTitle:@"Ok"
otherButtonTitles: nil] show];
} else {
NSLog(@"Something went wrong");
}
}];
}];
}
然后在我的 cellForItemAtIndexPath
中,我有一个 if 语句来设置 UIButton
的选定状态。
-(UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath object:(PFObject *)object
{
NSLog(@"cellForItemAtIndexPath");
// other cell info here deleted to make things clearer
_addFavouriteButton = [cell addFavouriteButton];
// if database favourites status is equal to one then set highlighted to (yes)
if ([object valueForKey:@"favourite"] == [NSNumber numberWithBool:YES]) {
[_addFavouriteButton setSelected:YES];
NSLog(@"SETTING SELECTED");
} else if ([object valueForKey:@"favourite"] == [NSNumber numberWithBool:NO]) {
[_addFavouriteButton setSelected:NO];
}
[[_addFavouriteButton titleLabel] setText:[object objectId]];
[_addFavouriteButton addTarget:_thisController action:@selector(addFavouriteButtonTapped:) forControlEvents:UIControlEventTouchUpInside];
return cell;
}
现在,当我离开 View 时,一切都被破坏了,然后再次返回 View 时,黑心出现在我选择最喜欢的地方。这可以。我遇到的问题是,当我实际选择要添加为最爱的项目时,心脏会更新并保持灰色,直到我离开 UICollectionView
并返回。
我已经在 addFavouriteButtonTapped: 方法的主队列中尝试了 reloadData
我也试过只重新加载单元格。
这些都不起作用。
我可以将 UIButton
的状态设置为选中,但是当我滚动时,选择不会保持位置并移动到其他单元格 UIButton
并离开单元格使用我实际选择的按钮。解决这个问题的唯一方法是保留少数,这样我们就有了一个新的 UICollectionView
,它使用我数据库中的 if 语句来确定是否选择了一个单元格。
**My custom cell:**
@interface VAGGarmentCell : UICollectionViewCell
@property (weak, nonatomic) IBOutlet PFImageView *imageView;
@property (weak, nonatomic) IBOutlet UIButton *addFavouriteButton;
@property (weak, nonatomic) IBOutlet UITextView *title;
@property (weak, nonatomic) IBOutlet UILabel *price;
@property (weak, nonatomic) IBOutlet UIActivityIndicatorView *activityIndicator;
@end
问题:
我已经完成了大部分需要完成的工作,以后可以在构建列出客户收藏夹列表中的项目的页面时使用收藏夹列。但是,如何在点击按钮并成功更新后立即刷新 UICollectionView
以显示 UIButton
的选定状态?
最佳答案
确保您也将 sender
(即按下的按钮)也设置为选中状态,或者在更新模型后重新加载 Collection View 一次。
更新:此答案已在聊天讨论后编辑和更新。
您的 View Controller 中的_addFavouriteButton
不需要iVar
(或@property
),按钮变量应该只是是 collectionView:cellForItemAtIndexPath:object:
方法范围内的局部变量 - 让我们首先修复该方法
-(UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath object:(PFObject *)object
{
NSLog(@"cellForItemAtIndexPath");
// other cell info here deleted to make things clearer
// Create a local variable for your button - this saves a bit of typing in the rest
// of the method. You can also use dot notation as its a property
UIButton *favouriteButton = cell.addFavouriteButton;
BOOL objectFavourited = [object[@"favourite"] boolValue];
NSLog(@"Setting selected? %@", objectFavourited ? @"YES" : @"NO");
favouriteButton.selected = objectFavourited;
// You should set the title directly on the button (as per the docs -
// https://developer.apple.com/library/ios/documentation/UIKit/Reference/UIButton_Class/UIButton/UIButton.html#//apple_ref/occ/instp/UIButton/titleLabel),
// you shouldn't touch titleLabel except for styling
// However you only used the title for seeing which object the favourite button tap was for,
// so I've commented it out
// [favouriteButton setTitle:[object objectId] forState:UIControlStateNormal];
[favouriteButton addTarget:_thisController action:@selector(addFavouriteButtonTapped:) forControlEvents:UIControlEventTouchUpInside];
return cell;
}
现在是按钮目标方法。在这里你应该做以下事情:更新你的模型,改变按钮状态然后保存模型。如果模型成功保存,您的用户是否关心 - 不,不是真的!但是,如果保存失败,则用户需要知道,并且按钮和模型需要恢复到之前的状态。
我很确定如果保存失败,对象将处于与您尝试保存之前相同的状态 - favourite
属性设置为 YES
。即使没有,将其设置回 NO
也无所谓。
获取按下按钮的项目的 indexPath
的最佳方法是使用与 this answer 中的方法类似的方法。 .这是计算索引路径的完美方式,不需要可怕的标签!
现在我们有了项目的索引路径,您无需查询该特定对象 - 我们可以使用 objectAtIndexPath:
直接获取它。
- (void)addFavouriteButtonTapped:(UIButton *)button
{
// Method adapted for a collection view from the above answer
CGPoint hitPoint = [button convertPoint:CGPointZero toView:self.collectionView];
NSIndexPath *hitIndex = [self.collectionView indexPathForItemAtPoint:hitPoint];
// Now get the object for this index
PFObject *object = [self objectAtIndexPath:hitIndex];
NSLog(@"add to favourites button tapped %ld - %@", (long)hitIndex.item, [object objectId]);
// Now update the model
object[@"favourite"] = @YES;
// And the button state
button.selected = YES;
// Now save the model to parse
[object saveInBackgroundWithBlock:^(BOOL succeeded, NSError *error) {
if (!succeeded) {
// Reset the object back to its previous state
object[@"favourite"] = @NO;
// Reload the item to reflect the changes in the model
[self.collectionView reloadItemsAtIndexPaths:@[hitIndex]];
// Only bother the user if something bad happened
[[[UIAlertView alloc] initWithTitle:@"Oops!"
message:@"There was a problem please try again later"
delegate:self
cancelButtonTitle:@"Dismiss"
otherButtonTitles:nil] show];
}
}];
}
您可以重新加载 Collection View ,但是因为您已经用该方法更新了 View ,所以实际上没有任何必要。
但是,如果保存失败,您应该重新加载 Collection View ,因为按钮现在可能正在用于 Collection View 中的不同项目!
关于ios - 如何使单元格中的 UIButton 在被点击后立即保留特定状态?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23310449/
当点击content 时,我想触发我的alert。我的 content 中可以有任意数量的子元素,所以我不想对每个元素都进行硬编码。我想也许我可以监听对该父元素的点击,然后每次点击子元素都会触发我的操
对于 Mac 应用程序,我想检测应用程序中的用户事件,因此我可以定期让 Web 服务知道用户在端点上仍然处于事件状态。 在 Cocoa Touch 中,我会覆盖 UIApplication 的 sen
第一次在这里发帖,但天知道我一直使用这个网站来搜索问题 :P 好吧,我现在遇到了自己的问题,我似乎无法轻松地在 Google 上搜索,在玩了大约 2 小时后,我终于决定发布一个问题,看看你们是怎么想的
Angular 触控 ngTouch导致在触摸释放时发生点击。 有没有办法让点击发生在触摸开始? fast-click下面的指令似乎可以在触摸屏上执行我想要的操作,但它不适用于鼠标点击。 myApp.
1) 如果我有这个,当我点击子 Container 时它不会打印'tap': Container( color: Colors.red, child: GestureDetector(
我简直要发疯了,只是想从 jQuery 中的事件中解除 onclick 处理程序的绑定(bind),以便稍后可以将其绑定(bind)到另一个函数。 我已将代码隔离在测试页中,因此除了核心之外什么都没有
我有一个有趣的情况。我需要触发实时点击,因为简单的点击不起作用。 这就是我所拥有的: $('.text').trigger('click'); 但我需要这样的东西: $('.text').trigge
这是我的作业,这是我第一次做表单验证。以下代码分别是我的HTML代码和JavaScript代码。 HTML 代码: First N
正如标题所示,如何获取 Magento 中特定产品的浏览量/点击量/展示次数。欢迎任何帮助。 最佳答案 这个简单的示例将为您提供在您指定的日期+其查看次数之间查看过的产品列表: $fromDate =
我正在创建一个应用程序,但在其中遇到错误。我想在按钮上添加 OnclickListner。该按钮位于 fragment 类上。从这个 fragment 类我想继续另一个类。代码如下: fragment
我在数组中有一些值。首先,我想在 View 中显示该数组的前两个值,接下来我想在某些按钮单击操作后显示剩余的值,并将数组索引增加 1。例如:一次点击显示第三个值,然后另一次点击显示第四个值。 我怎样才
在下面的代码片段中,如果在链接上执行“CMD+CLICK”,则不会显示 alert('CMD')。这是为什么? 我想在用户按下 CMD 按钮(或 Windows 上的 CTRL 键)+单击 href
我希望在单击链接时开始加载一些内容。在单击该链接之前,我不希望它使用任何带宽。另外如何实现几乎所有灯箱中都能看到的旋转光标动画? 最佳答案 使用$.ajax()函数动态加载内容。 对于动画,请找到一个
我有如下的 DOM: users 当用户点击按钮时,它会将新的“td”附加到“tr”。它运作良好。问题:单击“a”我想打开两个链接。最好的方法是首先将当前页面重定向到另一个页面,然后
这是我正在尝试做的.. 点击按钮会显示一个随机数组项。 数组项只能显示一次。 目前我已经将代码设置为: 点击随机数组项显示。 按钮点击继续循环,没有结束。 按钮点击多次显示元素。 这是代码的链接 ht
我想创建...基本上是一个宏程序。点击记录后,它会记录所有鼠标(可能最终是键盘)事件。然后你可以保存,然后播放,鼠标应该移动并点击在相同的地方当你录制它时它会发生。 我知道如何获取全局鼠标事件,但我不
我有一个关于将 onClick 添加到 ListView 的问题,我已经尝试尽可能多地遵循 Android NotePad 教程,但是对于我的布局我不太明白如何添加它。 这是 Activity 类,它
我正在使用一个网站以表格的形式显示信息。用户可以单击表格中的行来更改它们的颜色,我还有一个按钮允许用户暂停页面的刷新,这样就不会添加新信息。这两个功能都适用于桌面,但不适用于触摸屏。我的第一个想法是触
所以我的网站上有一个正常的链接,我想为它添加跟踪。我可以设想很多方法来做到这一点,但我已经确定通过编写一个小的 jquery 函数并在我的标签中放置一个小片段来实现这一点非常简单: click me!
我正在尝试使我的图片按钮看起来不错。我尝试了几种不同的方法,但它们看起来都不对。这是一个圆形图像,我想让它看起来像是可以按下的。这是我到目前为止所得到的。 android:textAppearance
我是一名优秀的程序员,十分优秀!