Color|Color watermarking tool
This is an extremely simple and practical watermarking software that can edit the watermark text, select the font color, and adjust the watermark transparency. Click Save to save to your photo album. It's very simple and practical. Welcome to download experience!
文章图片
文章图片
文章图片
/* * * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License");
you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. * */#import "CDVOrientation.h"#import#import@interface CDVOrientation () {}
@end
@implementation CDVOrientation
-(void)screenOrientation:(CDVInvokedUrlCommand *)command
{
CDVPluginResult* pluginResult;
NSInteger orientationMask = [[command argumentAtIndex:0] integerValue];
CDVViewController* vc = (CDVViewController*)self.viewController;
NSMutableArray* result = [[NSMutableArray alloc] init];
if(orientationMask & 1) {
[result addObject:[NSNumber numberWithInt:UIInterfaceOrientationPortrait]];
}
if(orientationMask & 2) {
[result addObject:[NSNumber numberWithInt:UIInterfaceOrientationPortraitUpsideDown]];
【Color|Color watermarking tool】}
if(orientationMask & 4) {
[result addObject:[NSNumber numberWithInt:UIInterfaceOrientationLandscapeLeft]];
}
if(orientationMask & 8) {
[result addObject:[NSNumber numberWithInt:UIInterfaceOrientationLandscapeRight]];
}
SEL selector = NSSelectorFromString(@"setSupportedOrientations:");
if([vc respondsToSelector:selector]) {
if (orientationMask != 15 || [UIDevice currentDevice] == nil) {
((void (*)(CDVViewController*, SEL, NSMutableArray*))objc_msgSend)(vc,selector,result);
}
if ([UIDevice currentDevice] != nil){
NSNumber *value = https://www.it610.com/article/nil;
if (orientationMask != 15) {
if (!_isLocked) {
_lastOrientation = [UIApplication sharedApplication].statusBarOrientation;
}
推荐阅读
- 废材自救记录|虚拟机-无法安装vmware tools的解决方法
- 360|360 将停止 StartCom 数字证书业务;微软的 Visual Studio Tools for AI 现已提供使用
- 为|为 Xcode Command Line Tool 添加测试
- Flutter应用如何调试--DevTools介绍(下)
- TBtools使用讲演课程-录屏-
- iOS|iOS Xcode统一修改RGB的color profile
- 小说域名怎么才能在微信中正常访问而不被微信拦截(366tool免费提供小说防封方案)
- iOS|iOS 利用VideoToolBox对视频进行编解码
- 让所有工具变成你的锤子 — 邂逅《Every Tool‘s a Hammer》| 云上人
- [RocksDB剖析系列]|[RocksDB剖析系列] Tools & Attempts