我创建了一个UIAlertView,其alertViewStyle设置为UIAlertViewStylePlainTextInput.
我想更改键盘类型,但不是通过添加子视图.
我的代码:
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"a" message:@"b" delegate:nil cancelButtonTitle:@"cancel" otherButtonTitles:@"aaa", nil];
alert.alertViewStyle = UIAlertViewStylePlainTextInput;
[alert show];
Run Code Online (Sandbox Code Playgroud) 在我的xcode项目中,有2个目标,一个框架,一个iOS应用程序,在iOS应用程序目标中链接并导入这个框架。
每次我更改 Framework 目标中的代码时,构建此 iOS 应用程序目标都不会自动重新构建 Framework
我想在构建 iOS 应用程序目标时自动重新构建当前的依赖框架目标,该怎么做?(有设置项吗?)