UIActionSheet showFromRect Autorotation

时间:2012-12-04 19:51:57

标签: ios ios5

我正在显示UIActionSheet这样:

-(void)accessoryPressed:(id)sender{
    //Omitted unnecessary objects

    UIActionSheet *actionSheet = [[UIActionSheet alloc] initWithTitle:titleString delegate:self cancelButtonTitle:@"Cancel" destructiveButtonTitle:@"Delete" otherButtonTitles:@"Upload", nil];
    //actionSheet.autoresizingMask = UIViewAutoresizingFlexibleLeftMargin;
    actionSheet.actionSheetStyle = UIActionSheetStyleBlackTranslucent;
    actionSheet.tag = ((UIButton*)sender).tag;
    [actionSheet showFromRect:[(UIButton*)sender frame] inView:[(UIButton*)sender superview] animated:YES];
}

sender对象是UIButton附件视图中嵌入的UITableViewCell

问题是当iPad旋转时,动作表没有调整大小(我不希望它实际调整大小但我希望它在正确的X,Y中)我尝试将AutoResizingMask设置为FlexibleLeft和FlexibleTop但是它似乎没有改变。

是否有人知道如何在自动轮播后让actionSheet指向accessoryView

这是它的样子:

轮换前 - Before Rotation

轮换后 - enter image description here

2 个答案:

答案 0 :(得分:7)

遗憾的是UIKit并没有为我们妥善处理这件事。在我自己的应用程序中,我通过在视图控制器中实现didRotateFromInterfaceOrientation:方法并使用视图的更新帧重新显示任何弹出窗口来处理此问题。

答案 1 :(得分:0)

我对此的解决方案是@ rmaddy的广义变体。它有点复杂,但如果你想要一个通用的解决方案来获得轮换回调,这可能会有所帮助。我有一个主容器视图控制器(如果你愿意,可以把它想象成UINavigationController的子类),我在其中实现:

- (void) willRotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation duration:(NSTimeInterval)duration;
{
    [[SMRotation session] viewControllerWillRotate];
}

- (void) didRotateFromInterfaceOrientation:(UIInterfaceOrientation)fromInterfaceOrientation;
{
    [[SMRotation session] viewControllerDidRotate];
}

在我需要它的类中(通常是非视图控制器类),我注册了回调。如,

[[SMRotation session].willRotate addTarget:popTip withSelector:@selector(willRotateHelp)];
[[SMRotation session].didRotate addTarget:popTip withSelector:@selector(didRotateHelp)];

SMRotation类如下:

//
//  SMRotation.h
//  Petunia
//
//  Created by Christopher Prince on 5/10/15.
//  Copyright (c) 2015 Spastic Muffin, LLC. All rights reserved.
//

// The reason for this class is because I don't, in general, appear to be able to get willRotate notifications from iOS. UIDevice only seems to support didRotate notifications.

#import <Foundation/Foundation.h>
#import "NSObject+TargetsAndSelectors.h"

@interface SMRotation : NSObject

+ (instancetype) session;

// Call these back from the same named methods in your main view controller.
- (void) viewControllerWillRotate;
- (void) viewControllerDidRotate;

// Use these in other classes to get rotation callbacks. There are no parameters passed to the callbacks.
@property (nonatomic, strong, readonly) NSObject<TargetsAndSelectors> *willRotate;
@property (nonatomic, strong, readonly) NSObject<TargetsAndSelectors> *didRotate;

@end

//
//  SMRotation.m
//  Petunia
//
//  Created by Christopher Prince on 5/10/15.
//  Copyright (c) 2015 Spastic Muffin, LLC. All rights reserved.
//

#import "SMRotation.h"

@interface SMRotation()
@property (nonatomic, strong) NSObject<TargetsAndSelectors> *willRotate;
@property (nonatomic, strong) NSObject<TargetsAndSelectors> *didRotate;
@end

@implementation SMRotation

+ (instancetype) session;
{
    static SMRotation* s_sharedInstance = nil;
    static dispatch_once_t onceToken;
    dispatch_once(&onceToken, ^{
        s_sharedInstance = [self new];
        [s_sharedInstance setup];
    });

    return s_sharedInstance;
}

- (void) setup;
{
    self.willRotate = [NSObject new];
    [self.willRotate resetTargets];
    self.didRotate = [NSObject new];
    [self.didRotate resetTargets];
}

- (void) viewControllerWillRotate;
{
    [self.willRotate forEachTargetInCallbacksDo:^(id target, SEL selector, NSMutableDictionary *dict) {
        [target performVoidReturnSelector:selector];
    }];
}

- (void) viewControllerDidRotate;
{
    [self.didRotate forEachTargetInCallbacksDo:^(id target, SEL selector, NSMutableDictionary *dict) {
        [target performVoidReturnSelector:selector];
    }];
}

@end

TargetsAndSelectors类别如下:

//
//  NSObject+TargetsAndSelectors.h
//  Petunia
//
//  Created by Christopher Prince on 5/11/15.
//  Copyright (c) 2015 Spastic Muffin, LLC. All rights reserved.
//

#import <Foundation/Foundation.h>

// Allow an object to have a collection of target's, and selectors that can be called as needed.

@protocol TargetsAndSelectors <NSObject>

// The only reason I have made all of these optional is to avoid the compiler complaining. I'm using this protocol just to document the fact that I'm making these methods available (through the NSObject (TargetsAndSelectors) category) in a particular class.
@optional

// Clear all target/selector's. This method must be called *before* any call to addTarget or to other methods of this category, for a particular instance.
- (void) resetTargets;

/**
 *  Add/remove a callback.
 *
 *  @param target Target object.
 *  @param selector Method to call on the target object.
 *
 *  @return Dictionary that was just added to the callbacks property for this target and selector.
 */
- (NSMutableDictionary *) addTarget: (id) target withSelector: (SEL) selector;
- (void) removeTarget: (id) target withSelector: (SEL) selector;

/**
 *  Convenience method to enable calling each of the callbacks in sequence.
 */
- (void) forEachTargetInCallbacksDo: (void (^)(id target, SEL selector, NSMutableDictionary *dict)) block;

// Elements are NSMutableDictionary's, with keys:
// Value of this is a target (id) embedded in a WeakRef object, so that if the target is deallocated, we don't retain a reference that object.
#define TARGETS_KEY_WEAK_TARGET @"weakTarget"
// Value of this is formatted as an NSString
#define TARGETS_KEY_SELECTOR @"selector"
@property (nonatomic, strong, readonly) NSArray *callbacks;

@end

@interface NSObject (TargetsAndSelectors)<TargetsAndSelectors>
@end

//
//  NSObject+TargetsAndSelectors.m
//  Petunia
//
//  Created by Christopher Prince on 5/11/15.
//  Copyright (c) 2015 Spastic Muffin, LLC. All rights reserved.
//

#import "NSObject+TargetsAndSelectors.h"
#import <objc/runtime.h>
#import "WeakRef.h"

@implementation NSObject (TargetsAndSelectors)

static char kCallbacksKey;

- (void) setCallbacks:(NSArray *)callbacks
{
    objc_setAssociatedObject(self, &kCallbacksKey, callbacks, OBJC_ASSOCIATION_RETAIN);
}

- (NSArray *) callbacks
{
    NSArray *theCallbacks = (NSArray *) objc_getAssociatedObject(self, &kCallbacksKey);
    return theCallbacks;
}

- (void) resetTargets
{
    self.callbacks = [NSMutableArray new];
}

- (NSMutableArray *) mutableCallbacks
{
    NSMutableArray *mutableCallbacks = (NSMutableArray *) self.callbacks;
    return mutableCallbacks;
}

- (NSMutableDictionary *) addTarget: (id) target withSelector: (SEL) selector;
{
    WeakRef *weakTarget = [WeakRef toObj:target];

    NSMutableDictionary *dict = [@{TARGETS_KEY_WEAK_TARGET: weakTarget,
                                   TARGETS_KEY_SELECTOR: NSStringFromSelector(selector)} mutableCopy];
    [[self mutableCallbacks] addObject:dict];
    return dict;
}

- (void) removeTarget: (id) target withSelector: (SEL) selector;
{
    NSString *stringSelector = NSStringFromSelector(selector);
    NSDictionary *dictToRemove = nil;

    for (NSDictionary *dict in [self mutableCallbacks]) {
        NSString *dictSelectorString = dict[TARGETS_KEY_SELECTOR];
        WeakRef *weakTarget = dict[TARGETS_KEY_WEAK_TARGET];
        if (weakTarget.obj == target && [dictSelectorString isEqualToString:stringSelector]) {
            dictToRemove = dict;
            break;
        }
    }

    if (dictToRemove) {
        [[self mutableCallbacks] removeObject:dictToRemove];
    }
}

- (void) forEachTargetInCallbacksDo: (void (^)(id target, SEL selector, NSMutableDictionary *dict)) block;
{
    // 5/10/15; Making a copy of the callbacks array in case one of the callbacks calls removeTarget above.
    NSArray *copyOfCallbacks = [self.callbacks copy];

    for (NSMutableDictionary *dict in copyOfCallbacks) {
        NSString *dictSelectorString = dict[TARGETS_KEY_SELECTOR];
        SEL selector = NSSelectorFromString(dictSelectorString);

        WeakRef *weakTarget = dict[TARGETS_KEY_WEAK_TARGET];

        // Going to just skip by any target that is nil, i.e., has been deallocated. A better idea would be to remove that target from the array...
        if (weakTarget.obj) {
            block(weakTarget.obj, selector, dict);
        }
    }
}

@end

最后,WeakRef是:

//
//  WeakRef.h
//  Petunia
//
//  Created by Christopher Prince on 9/1/14.
//  Copyright (c) 2014 Spastic Muffin, LLC. All rights reserved.
//

#import <Foundation/Foundation.h>

@interface WeakRef : NSObject

+ (instancetype) toObj: (id) obj;
+ (id) from: (WeakRef *) weakRef;

@property (nonatomic, weak) id obj;

@end

//
//  WeakRef.m
//  Petunia
//
//  Created by Christopher Prince on 9/1/14.
//  Copyright (c) 2014 Spastic Muffin, LLC. All rights reserved.
//

#import "WeakRef.h"

@implementation WeakRef

+ (instancetype) toObj: (id) obj;
{
    WeakRef *result = [WeakRef new];
    result.obj = obj;
    return result;
}

+ (id) from: (WeakRef *) weakRef;
{
    return weakRef.obj;
}

@end

猜猜其中一些应该放在Github ......