18 lines
350 B
Objective-C
18 lines
350 B
Objective-C
//
|
|
// MBIMURLUtilities.h
|
|
// kordophoned
|
|
//
|
|
// Created by James Magahern on 1/17/23.
|
|
// Copyright © 2023 James Magahern. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface NSURL (MBIMURLUtilities)
|
|
- (nullable NSString *)valueForQueryItemWithName:(NSString *)queryItemName;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|