㈠ 葫蘆俠ios版下載源代碼
http://www.huluxia.com/pro/index.html
reg.huluxia.net/cydia
㈡ GitHub 上有哪些完整的 iOS-App 源碼值得參考
1. Coding iOS 客戶端
Coding官方客戶端. 筆者強烈推薦的值得學習的完整APP.
GitHub - Coding/Coding-iOS: Coding iOS 客戶端源代碼
2. OSCHINA 的 iPhone 客戶端
開源中國的iPhone客戶端源碼
https://git.oschina.net/oschina/iphone-app
3. Git@OSC
Git@OSC iPhone 客戶端,方便用戶查看Git@OSC的項目以及簡單的操作issue等
oschina / git-osc-iphone
4. Firefox for iOS
GitHub - mozilla/firefox-ios: Firefox for iOS
5. zulip-ios
Dropbox收購公司內部社交服務商Zulip,然後全部開源,這是iOS App
GitHub - zulip/zulip-ios: Zulip iOS app
6. iOSSF
SegmentFault官方App
GitHub - gaosboy/iOSSF: SegmentFault官方App
7. iReddit
Reddit iPhone客戶端
GitHub - reddit/iReddit: The iReddit iPhone app
8. Monkey
GitHub第三方iOS客戶端
GitHub - coderyi/Monkey: Monkey is a GitHub third party client for iOS,to show the rank of coders and repositories.
9. Watch
Dribbble第三方客戶端
GitHub - tuesda/Watch: A project which demonstrate how to develop a custom client on android for dribbble.com
10. Voice2Note
懶人筆記iOS客戶端
GitHub - liaojinxing/Voice2Note: 懶人筆記iOS客戶端
11. RSSRead
「已閱」(iOS上開源RSS新聞閱讀器)
GitHub - ming1016/RSSRead: 「已閱」(iOS上開源RSS新聞閱讀器),有興趣?那就Pull Requests吧
12. BeeFancy
BeeFancy仿Fancy官方APP的WIREFRAME,基於BeeFramework
GitHub - BeeFramework/BeeFancy: 仿Fancy官方APP的WIREFRAME,基於BeeFramework
13. SXNews
模仿網易新聞做的精仿網易新聞
GitHub - dsxNiubility/SXNews: High imitation Neteasy News. (include list,detail,photoset,weather,feedback)
14. Doppio
尋找最近的星巴克
GitHub - chroman/Doppio: An open source iOS app to find the nearest Starbucks store using NSURLSession, AFNetworking 2.0, Mantle and Starbucks private API.
15. Anypic
類似於Instagram的一款App
GitHub - ParsePlatform/Anypic: An open source mobile and web app that lets users share photos similar to Instagram
16. 豆瓣相冊
Slowslab iOS應用 豆瓣相冊 精選集 開源項目
GitHub - TonnyTao/DoubanAlbum: Slowslab iOS應用 豆瓣相冊 精選集 開源項目,僅供學習參考
17. ChatSecure-iOS
Objective-C寫的XMPP聊天應用
GitHub - ChatSecure/ChatSecure-iOS: ChatSecure is a free and open source encrypted chat client for iPhone and Android that supports OTR encryption over XMPP.
18. NotificationChat
Objective-C寫的完整的聊天應用
GitHub - relatedcode/EncryptedChat: This is a full native iPhone app to create realtime, text based group or private chat with Parse and Firebase.
19. FakeZhihuDaily
仿知乎日報iOS客戶端
GitHub - gnou/FakeZhihuDaily: 仿知乎日報iOS客戶端
20. ruby-china-for-ios
RubyChina官方客戶端
GitHub - ruby-china/ruby-china-for-ios: Ruby China client for iOS
21. Meizi
豆瓣妹子圖iOS客戶端
GitHub - Sunnyyoung/Meizi: 豆瓣妹子圖iOS客戶端
22. PlainReader
一款 iOS(iPhone + iPad) 新聞類客戶端,內容抓取自http://cnBeta.com
PlainReader/PlainReader at master · guojiubo/PlainReader · GitHub
23. iOS-2048
用Objective-C實現的2048游戲
GitHub - austinzheng/iOS-2048: iOS drop-in library presenting a 2048-style game
24. ECMobile_iOS
基於ECShop的手機商城客戶端
GitHub - GeekZooStudio/ECMobile_iOS: 基於ECShop的手機商城客戶端
25. wikipedia-ios
維基網路官方App, 已上架
GitHub - wikimedia/wikipedia-ios: The official Wikipedia iOS app.
26. Sol
漂亮的扁平風格的天氣App
GitHub - comyarzaheri/Sol: Sol° beautifully displays weather information so you can plan your day accordingly. Check the weather in your current location or any city around the world. Implemented in Objective-C.
㈢ ios專門下載修改版游戲的軟體
操作系統不一樣,無法安裝在IOS系統下。
如果你想移植需要獲得程序的源代碼,根據ios軟體的開發環境修改,重新編譯才可以。
希望採納
㈣ 怎麼試運行iOS軟體的源代碼
分析一款ios應用的源代碼方法如下:
1、首先提取整個應用文件的二進制代碼,建立for循環將機器所有字元串進行排列組合並標記後編譯。
2、再建立for將應用文件二進制代碼同所有的字元串排列組合編譯成的二進制文件進行對比。
3、最後通過標記就能找到應用的源代碼。
㈤ 超好玩魔盒ios源代碼
其實魔盒的源代碼還是挺簡單的,如下就是全部代碼:
php"><?php
require'./libs/Smarty.class.php';
$smarty=newSmarty();
$smarty->assign('title','博客正文');
if(!isset($_GET["blogid"])||!is_numeric($_GET["blogid"]))
{
$smarty->assign('info','您所查看的文章不存在或已經被刪除。');
$smarty->display('wrong.html');
exit();
}
$blogid=$_GET["blogid"];
$mysqli=newmysqli("localhost","root","","herblog");
$sql="selectid,datecreate,readcnt,commentcnt,title,blogfromblogwhereid='".$blogid."'";
$rst=$mysqli->query($sql);
if(!$rst)
{
//數據查詢出錯
$smarty->assign('info','伺服器忙,請稍後重試');
$smarty->display('wrong.html');
$mysqli->close();
exit();
}
if($row=$rst->fetch_array())
{
$smarty->assign('blog',array(
'id'=>$row[0],
'date'=>$row[1],
'readcnt'=>$row[2],
'commentcnt'=>$row[3],
'title'=>$row[4],
'blog'=>$row[5],
));
$hasComment=0;
$sql="select`id`,`date`,`ip`,`user`,`text`fromcommentwhere`blogid`='".$blogid."'";
$rst=$mysqli->query($sql);
if($rst)
{
$comments=array();
while($row=$rst->fetch_array())
{
$comments[]=array(
'date'=>$row[1],
'user'=>$row[3],
'text'=>$row[4]
);
$hasComment++;
}
$smarty->assign('comments',$comments);
}
$smarty->assign('hasComment',$hasComment);
$smarty->display('blog.html');
}
else
{
$smarty->assign('info','您所查看的文章不存在或已經被刪除。');
$smarty->display('wrong.html');
}
if($rst)
{
$rst->free();
}
$mysqli->close();
?>
㈥ 有那些ios游戲軟體源
一般都是威鋒,蘋果園,多玩
㈦ 威鋒網IOS固件下載 源代碼
這什麼源碼啊?就是一個連接apple iphone各個固件版本的地址菜單罷了。。自己也可以做嘛
㈧ iOS的,鬥地主和麻將的游戲源碼,哪裡能有啊,想學習一下~
必勝怎麼可能?一般要看你做哪門了啊?比方地主的,要給你上家壓力,給他主動出牌的自由,別人要出你就要壓,保證不讓別人逃牌,讓主動保持在自己手裡.還有上家是攔地主的一般出錯把地主的副牌放掉就可以結束了啊.不算必勝,只是一個宗旨.
竅門道也是有,當你有大牌接手不妨打一對,或單張,如果沒人要(有彈不用,三個不拆,連對...),接著打,直至自己的副牌逃走,就可以採取攻勢了.
㈨ 急急急求一個Flash類似接蘋果的游戲源碼,外加有不同的游戲級別和as.文件。感謝!!!
需要使用以下軟體:功能不須多說,功能完備,不僅能製作FLASH動畫片與游戲,還支持AS動態腳本..免費下載:http://hi..com/msoffice2003p/blog/item/4a51ee938f7dccabc9eaf4b7.html安全無毒,安裝完成即可永久使用支持32位和64位的WINDOWS7、 XP、WIN2000、WIN2003等