sharekit

华为EMUI 10.1强势升级,分布式技术再次突破终端互联局限

三世轮回 提交于 2020-08-10 05:07:30
人们拥有的智能设备越来越多,为了解决跨终端的交互协同体验,华为终端分布式技术应运而生。分布式技术是华为面向多设备协同的软件解决方案,其中分布式互联互通能力是实现跨设备协同的基础,已获得行业众多合作伙伴的认可和赞誉。前不久华为年度旗舰手机华为P40系列闪耀登场,在全新EMUI 10.1系统的加持下,分布式互联互通能力再升级,在投屏、文件传输等多个场景中为用户带来了跨终端高效协作的极佳体验。 华为Cast+增强投屏技术,为用户带来高清、流畅的投屏体验 在手机和大屏互联方面,EMUI 10.1全新推出华为Cast+增强投屏技术,让手机画面秒投大屏,打破小屏限制,为用户带来流畅、高清的家庭娱乐投屏体验。通过无线投屏,用户可以在电视或投影仪上畅享“影院式”的高清画质,“挣脱”手机小屏束缚。目前Cast+增强投屏技术已经在 极米Z6X、Z8X投影仪,长虹58D5P、长虹55Q7ART、康佳R3系列、康佳A5系列 等多款智能终端设备上线,配合EMUI 10.1版本的华为手机实现更好的投屏体验。超低时延保障还可以让游戏玩家将手机游戏投屏至电视上时,也能享受流畅的媲美主机游戏的极致体验。 华为Cast+增强投屏技术在多款智能电视、投影仪终端的应用,得益于华为分布式互联互通能力Cast+ Kit的开放。华为Cast+ Kit基于业界首创的极简协议,打破传统的TCP/IP协议体系的限制

iOS ShareKit Cancel button is not working with Xcode 4.2

自古美人都是妖i 提交于 2020-01-17 04:07:15
问题 The iOS Sharekit working with previous Xcode but will 4.2 it's not working anymore, When I hit the Cancel button it goes to this routine Inside the SHK.m - (void)hideCurrentViewControllerAnimated:(BOOL)animated { if (isDismissingView) return; if (currentView != nil) { // Dismiss the modal view if ([currentView parentViewController] != nil) { self.isDismissingView = YES; [[currentView parentViewController] dismissModalViewControllerAnimated:animated]; } else self.currentView = nil; } } I

iOS ShareKit Cancel button is not working with Xcode 4.2

筅森魡賤 提交于 2020-01-17 04:07:06
问题 The iOS Sharekit working with previous Xcode but will 4.2 it's not working anymore, When I hit the Cancel button it goes to this routine Inside the SHK.m - (void)hideCurrentViewControllerAnimated:(BOOL)animated { if (isDismissingView) return; if (currentView != nil) { // Dismiss the modal view if ([currentView parentViewController] != nil) { self.isDismissingView = YES; [[currentView parentViewController] dismissModalViewControllerAnimated:animated]; } else self.currentView = nil; } } I

Post multiple urls in one post using iphone sharekit

穿精又带淫゛_ 提交于 2020-01-15 06:27:48
问题 I want to post text(on twitter, fb, mail) like following using share kit: Hi, This is share text Click here to do something <=== this should be a link Click here to another something <=== this should be a link Cheers I have following code: -(IBAction)shareOnTwitter:(id)sender { [SHK setRootViewController:self]; SHKItem *item; NSURL *url = [NSURL URLWithString:@"http://dosomething.com"]; item = [SHKItem URL:url title:@"HI,\n\nThis is share text\n\nCheers"]; [SHKTwitter shareItem:item]; } -

Stable ShareKit fork recommendation?

泄露秘密 提交于 2020-01-12 02:18:06
问题 ShareKit looks abandoned. And there are so many forks. But major maintainer is undeterminable. Now I'm just going to pick one to use. What fork do you recommend? Or replacement? 回答1: try ShareKit, they are trying to make the ultimate "best of" fork. ShareKit release 2.0 is in final testing. 回答2: Socialize is a new social sharing sdk by the folks behind AppMakr. It's open source and appears to be free. I haven't tried it yet - so I can't vouch for it - but maybe it's worth a look? 回答3: As of

Localisation strings not always work having ShareKit in a project

♀尐吖头ヾ 提交于 2020-01-11 11:32:46
问题 since I've removed some localisations from my app, I have this problem: the first time I load my app, I see the localised string of my key in a label. The second time I load the app, the xxxxxkey appears. The next time I load the app, everything is fine again (showing the localized string). How can this be? I would be glad, if anyone could point me in the right direction. I'm on Xcode 4.2. Thanks in advance! 回答1: I experienced this too after adding the ShareKit library to my project. As it

Localisation strings not always work having ShareKit in a project

删除回忆录丶 提交于 2020-01-11 11:32:22
问题 since I've removed some localisations from my app, I have this problem: the first time I load my app, I see the localised string of my key in a label. The second time I load the app, the xxxxxkey appears. The next time I load the app, everything is fine again (showing the localized string). How can this be? I would be glad, if anyone could point me in the right direction. I'm on Xcode 4.2. Thanks in advance! 回答1: I experienced this too after adding the ShareKit library to my project. As it

ShareKit beta issues?

穿精又带淫゛_ 提交于 2020-01-07 04:35:10
问题 I have made a so-called ShareKit beta, it has many fixes for warnings and also features a new SMS share component. This should dramatically be faster on all iOS's. Feel free to download it and of course add a comment if you would like to see a new feature added! Thanks! ChangeLog: 1.0 : Fixed most warnings, made some improvements. Also fixed some leaks 1.1 : Added SMS capabilities, fixed all warnings and leaks. And made other misc. fixes 1.2 Coming Soon : Will feature the latest FBConnect so

Email not working in ShareKit and no errors

心不动则不痛 提交于 2020-01-03 18:52:15
问题 I am using ShareKit to add Facebook, Twitter and email sharing to my iPhone app. Now, Facebook and Twitter are working but email is not. The big problem is that there is no error or anything, it is working just like it should but the email is not delivered to the recipient. This is what I am using to send the email [SHK setRootViewController:self]; SHKItem *item; NSURL *url = [NSURL URLWithString:@"http://www.url.com/"]; item = [SHKItem URL:url title:@"Using sharekit to share urls...."];

iphone twitter and sharing

老子叫甜甜 提交于 2020-01-02 16:03:13
问题 Has anyone encountered the following error message when sending to Twitter? "Error: Incorrect signature" And on the debug console: <0xf14cf80 SHKTwitter.m:(356)> Twitter Send Status Error: {"request":"\/1\/statuses\/update.json","error":"Incorrect signature"} So far as I can tell I've followed the install instructions on http://www.getsharekit.com/install/#download and it is working with Facebook, e-mail etc. just not Twitter. It would be great if someone has seen this error before and goes