gpt4 book ai didi

iOS 4 短信编辑器无法正常工作

转载 作者:行者123 更新时间:2023-11-29 13:39:12 25 4
gpt4 key购买 nike

我在我的应用程序中显示了一个 MFMessageComposeViewController,在 iOS 5 上一切正常,但是一些测试用户提示 iOS 4,似乎由于我下面的代码而出现的 View Controller 正在显示一个空的 SMS撰写,此外没有顶部导航项,例如取消按钮甚至标题“新消息”。

我手头没有任何 iOS 4 设备(我知道这很糟糕),所以我无法跳入问题并对其进行调试。

谁能看出我做错了什么?我附上了我收到的问题截图,这很奇怪。

BOOL canText = [MFMessageComposeViewController canSendText];

if(canText){
MFMessageComposeViewController * smsViewController = [[MFMessageComposeViewController alloc] init];
if(smsViewController){

smsViewController.body = @"test message";
smsViewController.messageComposeDelegate = self;

[self presentModalViewController:smsViewController animated:YES];
[smsViewController release];

}else{
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"SMS"
message:@"Your cannot send SMS on this device."
delegate:nil
cancelButtonTitle:@"ok"
otherButtonTitles:nil];

[alert show];
[alert release];

}
}else{
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"SMS"
message:@"Your cannot send SMS on this device."
delegate:nil
cancelButtonTitle:@"ok"
otherButtonTitles:nil];

[alert show];
[alert release];

}

enter image description here

最佳答案

我有一个 UINavigationBar 类别通过覆盖 viewWillAppear 在栏下添加阴影,这破坏了 View 。事情就是这样。

关于iOS 4 短信编辑器无法正常工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9632760/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com