刚下的Fifa13 进入游戏时弹出Missing required file"ssleay32.dll"

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了刚下的Fifa13 进入游戏时弹出Missing required file"ssleay32.dll"相关的知识,希望对你有一定的参考价值。

刚下的Fifa13 进入游戏时弹出Missing required file"ssleay32.dll",但是我去补下了这个文件,但是结果又提示模块”ssleay32.dll“可能与您正在运行的window版本不兼容,我系统是win7家庭普通版64位的,求大神指导啊!!!!小弟买不起正版...只能玩盗版了。。。。

参考技术A 试试看 以管理员模式运行 参考技术B 同样问题,求解

用户按下按钮时弹出日历

【中文标题】用户按下按钮时弹出日历【英文标题】:popover calendar when user presses a button 【发布时间】:2014-01-15 16:49:22 【问题描述】:

我想在用户按下按钮时显示一个带有日历的弹出窗口。我见过很多弹出窗口,但它们不包括按下按钮的箭头。我想要类似于下图的东西。我已经做了一个日历,但我不知道如何将它插入到弹出窗口中。谁能给我个窍门?

我知道如何使用 tableview 制作弹出框,但不知道如何使用其他 viewcontroller。

谢谢!!

【问题讨论】:

这个网站是用来提问的,而不仅仅是告诉我们你想要什么。 @rmaddy 好的,我的问题是我不知道如何将日历放入弹出框,有人知道怎么做吗?我已经完成了日历,我要的是如何将它放入弹出框。抱歉,如果我的问题似乎是我要求人们做我的工作,因为事实并非如此。 使用另一个视图控制器创建UIPopoverController 与使用表格视图创建一个相同。弹出框总是用另一个视图控制器创建的。显示到目前为止您为使用日历创建弹出框所做的尝试。 【参考方案1】:

我已经解决了我的问题。我将一步一步地解释它:

1- 首先我创建了一个弹出框 2- 然后我在我的项目中包含一个calendar 3-然后我将日历视图添加到弹出窗口中

代码如下:

- (IBAction)startPressed:(id)sender 

UIButton * popoverButton = (UIButton*) sender;

CKCalendarView *calendar = [[CKCalendarView alloc] initWithStartDay:startMonday];
self.calendar = calendar;
calendar.delegate = self;

self.dateFormatter = [[NSDateFormatter alloc] init];
[self.dateFormatter setDateFormat:@"dd/MM/yyyy"];
self.minimumDate = [self.dateFormatter dateFromString:@"20/09/2012"];

self.disabledDates = @[
                       [self.dateFormatter dateFromString:@"05/01/2013"],
                       [self.dateFormatter dateFromString:@"06/01/2013"],
                       [self.dateFormatter dateFromString:@"07/01/2013"]
                       ];

calendar.onlyShowCurrentMonth = NO;
calendar.adaptHeightToNumberOfWeeksInMonth = YES;
calendar.tag = 0;

calendar.frame = CGRectMake(10, 10, 300, 320);

self.dateLabel = [[UILabel alloc] initWithFrame:CGRectMake(10, CGRectGetMaxY(calendar.frame) + 4, self.view.bounds.size.width, 24)];
[self.view addSubview:self.dateLabel];

self.view.backgroundColor = [UIColor whiteColor];

[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(localeDidChange) name:NSCurrentLocaleDidChangeNotification object:nil];


popoverContent = [[UIViewController alloc]

                                    init];

UIView* popoverView = [[UIView alloc]

                       initWithFrame:CGRectMake(0, 0, 300, 220)];

popoverView.backgroundColor = [UIColor whiteColor];

popoverContent.view = calendar;


//resize the popover view shown
//in the current view to the view's size

popoverContent.contentSizeForViewInPopover =

CGSizeMake(300, 220);


//create a popover controller

self.myPopover = [[UIPopoverController alloc]

                          initWithContentViewController:popoverContent];


//present the popover view non-modal with a
//refrence to the button pressed within the current view
//UIPopoverArrowDirectionAny
[self.myPopover presentPopoverFromRect:popoverButton.frame

                                        inView:self.view

                      permittedArrowDirections:UIPopoverArrowDirectionUp

                                      animated:YES];

这是代码中最重要的部分。如果有人需要帮助,请不要怀疑!

【讨论】:

以上是关于刚下的Fifa13 进入游戏时弹出Missing required file"ssleay32.dll"的主要内容,如果未能解决你的问题,请参考以下文章

pycharm导入工程文件执行程序时弹出Edit configuration

系统进不了,进入桌面时弹出很多out of memory怎么回事啊??

如何关闭华为打开应用时弹出的更新提示

IOS 固定定位底部input输入框,获取焦点时弹出的输入法键盘挡住input

我玩孤岛危机3时弹出Miss required file"ssleay32.dll"这个真么弄啊!

UISplitViewController - 弹出细节时弹出主控(反之亦然)