使用Facebook ios SDK在应用程序中注销Facebook

我已经在我的应用程序中集成了Facebooklogin,因此用户可以同时login我的应用程序帐户和Facebook,并做相应的actions.For Facebook集成我已经添加Facebook SDK.Now当在我的应用程序中单击注销button它必须清除所有Facebook帐户的凭据。我去了: -(IBAction)btnlogOutClicked:(id)sender { [appDelegate fbDidlogout]; } -(void)fbDidlogout { FBSession* session = [FBSession activeSession]; [session closeAndClearTokenInformation]; [session close]; [FBSession setActiveSession:nil]; } 但是,当我再次点击button,我直接redirect到我的帐户,而无需loginFacebooklogin页面。 我怎样才能注销Facebook?

iOS 7表格视图无法自动调整内容插入

我正在将我的项目转移到iOS7。 我正面临一个与半透明导航栏有关的奇怪问题。 我有一个视图控制器,它有一个tableview作为子视图(我们称之为ControllerA)。 我用controllerA创build一个新的uinavigationcontroller,并使用presentviewcontroller以模态的forms呈现它。 呈现的视图控制器的表视图被导航栏阻止。 我将自动调整滚动视图设置为YES,但结果没有改变。 我知道我可以将edgesForExtendedLayout设置为UIRectEdgeNone ,但它会使导航栏不再透明。 之后,我试图创build一个新的视图控制器进行testing。 它包含几乎相同的元素。 但结果大不相同。 表格视图内容不会被阻止。 结论 两个视图控制器的自动调整滚动视图集被设置为是 该项目不使用故事板 第一个是在Xcode 4.6中创build的,第二个是在Xcode 5上新创build的 我已经比较了两个类xib和代码,没有太大的不同

鼠标结束时更改button的颜色

当IsMouseOver == True时,我想改变一个button的背景颜色 <Button Command="{Binding ClickRectangleColorCommand}" Background="{Binding Color ,Converter={StaticResource RGBCtoBrushColorsConverter},Mode=TwoWay}" Width="auto" Height="40"> <TextBlock Foreground="Black" Text="{Binding Color, Converter={StaticResource RGBCColorToTextConveter},Mode=TwoWay}"/> <Button.Style> <Style TargetType="Button" BasedOn="{StaticResource {x:Type Button}}"> <Style.Triggers> <Trigger Property="IsMouseOver" Value="True"> <Setter Property="Background" Value="DarkGoldenrod"/> </Trigger> </Style.Triggers> </Style> </Button.Style> </Button> 我似乎无法理解为什么这个触发器不工作。

TypeError:在尝试按指数拟合数据时,只能将长度为1的数组转换为Python标量

f=np.loadtxt('Single Small Angle 1.txt',unpack=True,skiprows=2) g=np.loadtxt('Single Small Angle 5.txt',unpack=True,skiprows=2) x = fg[:,:11944] t=range(len(x)) m=math.log10(abs(x)) np.polyfit(t,m) plt.plot(t,abs(x)) plt.show() 我只是不确定如何解决我的问题。 它一直在说: m=math.log10(abs(x)) TypeError: only length-1 arrays can be converted to Python scalars

HashMap – 获取First Key的值

下面是包含在HashMap中的值 statusName {Active=33, Renewals Completed=3, Application=15} Java代码获取第一个密钥(即活动) Object myKey = statusName.keySet().toArray()[0]; 我们如何收集第一个关键的“价值”(即33),我想将“关键”和“价值”都存储在单独的variables。

如何让应用程序知道它的运行unit testing纯Swift项目?

在XCode 6.1中运行testing时一件令人讨厌的事情是,整个应用程序必须运行并启动其storyboard和root viewController。 在我的应用程序中运行一些服务器调用来获取API数据。 但是,我不希望应用程序在运行testing时执行此操作。 预处理器的macros不见了,对于我的项目来说,最好的办法是启动运行testing,而不是普通的启动。 我用CMD + U和机器人正常运行它们。 伪代码将是: // Appdelegate.swift if runningTests() { return } else { // do ordinary api calls }

Bootstrap Modals在closures之后不断添加填充

你可以从这个video检查错误。 我试图把这个代码放在我的javascript: $('.modal').on('hide.bs.modal', function (e) { $("element.style").css("padding-right","0"); }); 但它不起作用。 有谁知道如何解决这个问题? 你可以在这里看到这个网站。 用户名和密码:admin / Koodaus1 我的代码: <button type="button" class="btn btn-lg btn-default" data-toggle="modal" data-target="#loginModal">Admin panel</button> <div id="loginModal" class="modal fade" role="dialog"> <div class="modal-dialog modal-sm"> <!– Modal content –> <div class="modal-content"> <!– header –> <div class="modal-header"> <button type="button" class="close" data-dismiss="modal">&times;</button> <h4 class="modal-title">Login</h4> </div> <!– body –> <div class="modal-body text-center" […]

未find框架GoogleToolboxForMac

在通过“pod更新”更新我的Firebase之后,我得到如下错误: ld: warning: directory not found for option '-F/Users/bennysantoso/Library/Developer/Xcode/DerivedData/FCM-atfcxuircoryufazlomgwfgmvaqm/Build/Products/Debug-iphonesimulator/GoogleToolboxForMac' ld: framework not found GoogleToolboxForMac clang: error: linker command failed with exit code 1 (use -v to see invocation) 这里我的Podfile: # Uncomment this line to define a global platform for your project # platform :ios, '9.0' pod 'Firebase/Core' pod 'Firebase/Messaging' target 'BB' do # Comment this […]

远程Linux服务器到远程Linux服务器目录复制。 怎么样?

从一个远程Linux服务器复制一个目录(使用子目录和文件)到另一个远程Linux服务器的最佳方法是什么? 我已经连接到两个使用SSH客户端(如腻子)。 我有两个root权限。

如何确定iPhone是否设置了12小时或24小时的时间显示?

我以为我最近看到了这样的回答,但现在我找不到了。 这里是我正在使用的代码来确定是否设置为24小时的时间显示。 它适合我在美国,但我不知道它是否会在所有地区工作。 这是足够的还是有更好的方法来找出当前的设置? +(BOOL) use24HourClock { BOOL using24HourClock = NO; NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init]; [dateFormatter setLocale: [NSLocale currentLocale]]; [dateFormatter setDateStyle:kCFDateFormatterNoStyle]; [dateFormatter setTimeStyle:kCFDateFormatterShortStyle]; // get date/time (1Jan2001 0000UTC) NSDate* midnight = [[NSDate alloc] initWithTimeIntervalSinceReferenceDate:0]; NSString* dateString = [dateFormatter stringFromDate: midnight]; // dateString will either be "15:00" or "16:00" (depending on DST) or // […]