<?xml version="1.0" encoding="iso-8859-9" ?>
<?xml-stylesheet type="text/xsl" href="RSS_xslt_style.asp" version="1.0" ?>
<rss version="2.0" xmlns:WebWizForums="https://syndication.webwiz.net/rss_namespace/">
 <channel>
  <title>Clomosy | Forum : iOS&#039;ta unit hatası</title>
  <link>https://forum.clomosy.com.tr/</link>
  <description><![CDATA[XML içerik linki; Clomosy | Forum : Genel &#304;&#351;lemler : iOS&#039;ta unit hatası]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Mon, 04 May 2026 16:03:30 +0000</pubDate>
  <lastBuildDate>Mon, 05 Aug 2024 12:17:18 +0000</lastBuildDate>
  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
  <generator>Web Wiz Forums 12.07</generator>
  <ttl>360</ttl>
  <WebWizForums:feedURL>https://forum.clomosy.com.tr/RSS_post_feed.asp?TID=797</WebWizForums:feedURL>
  <image>
   <title><![CDATA[Clomosy | Forum]]></title>
   <url>https://forum.clomosy.com.tr/forum_images/logo.png</url>
   <link>https://forum.clomosy.com.tr/</link>
  </image>
  <item>
   <title><![CDATA[iOS&#039;ta unit hatası : Merhaba G&#246;kt&#252;&#287;Yeni gelen &#246;zellikler...]]></title>
   <link>https://forum.clomosy.com.tr/forum_posts.asp?TID=797&amp;PID=1410#1410</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="https://forum.clomosy.com.tr/member_profile.asp?PF=106">Developer</a><br /><strong>Konu:</strong> 797<br /><strong>Gönderim Zamanı:</strong> 05&nbsp;Ağustos&nbsp;2024 Saat 12:17<br /><br />Merhaba Göktüğ<div>Yeni gelen özellikler şu an kullanılan IOS sürümlerinde desteklenmektedir. Yeni özellikleri windows exe sinde kullanabilirsiniz.</div>]]>
   </description>
   <pubDate>Mon, 05 Aug 2024 12:17:18 +0000</pubDate>
   <guid isPermaLink="true">https://forum.clomosy.com.tr/forum_posts.asp?TID=797&amp;PID=1410#1410</guid>
  </item> 
  <item>
   <title><![CDATA[iOS&#039;ta unit hatası : iOS s&#252;r&#252;m&#252;m&#252; g&#252;ncelledim ayn&#305;...]]></title>
   <link>https://forum.clomosy.com.tr/forum_posts.asp?TID=797&amp;PID=1397#1397</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="https://forum.clomosy.com.tr/member_profile.asp?PF=207">goktugrlr</a><br /><strong>Konu:</strong> 797<br /><strong>Gönderim Zamanı:</strong> 02&nbsp;Ağustos&nbsp;2024 Saat 18:09<br /><br />iOS sürümümü güncelledim aynı hata devam ediyor<br>]]>
   </description>
   <pubDate>Fri, 02 Aug 2024 18:09:56 +0000</pubDate>
   <guid isPermaLink="true">https://forum.clomosy.com.tr/forum_posts.asp?TID=797&amp;PID=1397#1397</guid>
  </item> 
  <item>
   <title><![CDATA[iOS&#039;ta unit hatası : Ana kodda Stats ad&#305;nda bir butonum...]]></title>
   <link>https://forum.clomosy.com.tr/forum_posts.asp?TID=797&amp;PID=1395#1395</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="https://forum.clomosy.com.tr/member_profile.asp?PF=207">goktugrlr</a><br /><strong>Konu:</strong> 797<br /><strong>Gönderim Zamanı:</strong> 02&nbsp;Ağustos&nbsp;2024 Saat 17:52<br /><br /><div>&nbsp;Ana kodda Stats adında bir butonum var ve tıklanınca aşağıdaki fonksiyon çağrılıyor.<br></div><div>Şu an cihazım güncelleniyor, güncellenmiş halini denemedim.</div><div><br></div><div>void ShowStats;</div>{<br>&nbsp; GetTimer.Enabled = False;&nbsp; //Oyundaki zamanlayıcı ilerlemesin diye durduruyorum<br>&nbsp; //RouteUnit('Stats');&nbsp; // Bu olduğu zaman direkt olarak proje açılmıyor<br>&nbsp; Clomosy.RunUnit('Stats');&nbsp; //Bu olduğu zaman sadece butona basılınca zamanlayıcı durduruluyor yeni unit açılmıyor<br><div>}</div><div><br></div><div>Unit kodu (ismi Stats):</div><div><br></div>uses<br>clMainScript;<br><br>var<br>statsForm : TclGameForm;<br>testChart : TClChart;<br>simpleJSONStr : String;<br>int profit : Integer;<br>profitLbl : TClProLabel;<br>itemsSoldMemo, itemsPurchasedMemo : TCLMemo;<br>bottomPanel : TclProPanel;<br>index : Integer;<br>backButton : TClProButton;<br><br>void BackToShop;<br>{<br>&nbsp;&nbsp;&nbsp; statsForm.btnGoBackClick(self);<br>&nbsp;&nbsp;&nbsp; clMainScript.GetTimer.Enabled = True;<br>}<br><br>{<br>&nbsp; statsForm = TclGameForm.Create(self);<br>&nbsp; statsForm.SetFormColor('#d4bb90', '', clGNone);<br>&nbsp; <br>&nbsp; testChart = statsForm.AddNewChart(statsForm,'testChart','Samsoong');<br>&nbsp;&nbsp; simpleJSONStr = '&#091;{ "Type": "Income","Value": ' + IntToStr(clMainScript.dailyIncome) + ',"color":"clGreen"},{"Type" : "Outcome","Value": ' + IntToStr(clMainScript.dailyOutcome) +',"color":"clRed"}&#093;';<br>&nbsp;<br>&nbsp;&nbsp; testChart.Align = alCenter;<br>&nbsp;&nbsp; testChart.Charttype = clCPie;<br>&nbsp;&nbsp; testChart.XAxisText = 'Type';<br>&nbsp;&nbsp; testChart.ChartItemText = 'Legend';<br>&nbsp;&nbsp; testChart.ChartItemsValue = 'Value';<br>&nbsp;&nbsp; testChart.ChartTitle = 'Day ' + IntToStr(clMainScript.dayCounter) + ' Statistics';<br>&nbsp;&nbsp; testChart.clLoadDataFromJSONStr(simpleJSONStr);<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;<br>&nbsp; profit = (clMainScript.dailyIncome - clMainScript.dailyOutcome);<br>&nbsp; <br>&nbsp; profitLbl = statsForm.AddNewProLabel(statsForm, 'profitLbl', '');<br>&nbsp; profitLbl.Align = alMostTop;<br>&nbsp; profitLbl.Text = 'Daily Profit:' + IntToStr(profit);<br>&nbsp; clComponent.SetupComponent(profitLbl,'{ "TextBold":"yes","TextSize":16, "TextHorizontalAlign":"center" ,"MarginLeft":5}');<br><br>&nbsp; <br>&nbsp;&nbsp; bottomPanel=statsForm.AddNewProPanel(statsForm, 'bottomPanel');<br>&nbsp;&nbsp; bottomPanel.Height=statsForm.clheight*40/100;<br>&nbsp;&nbsp; bottomPanel.Align=alBottom;<br><br><br>&nbsp; itemsSoldMemo = statsForm.AddNewMemo(bottomPanel,'itemsSoldMemo', 'Daily Sold Item(s):');<br>&nbsp; itemsSoldMemo.Align = alLeft;<br>&nbsp; itemsSoldMemo.Margins.Left = 130;<br>&nbsp; itemsSoldMemo.Height = 1;<br>&nbsp; itemsSoldMemo.Width = 140;<br>&nbsp; itemsSoldMemo.Margins.Top = 30;<br>&nbsp; itemsSoldMemo.Margins.Bottom = 30;<br>&nbsp; itemsSoldMemo.ReadOnly = True;<br>&nbsp; itemsSoldMemo.TextSettings.WordWrap = True;<br>&nbsp; <br>&nbsp; itemsPurchasedMemo = statsForm.AddNewMemo(bottomPanel,'itemsPurchasedMemo', 'Daily Purchased Item(s):');<br>&nbsp; itemsPurchasedMemo.Align = alRight;<br>&nbsp; itemsPurchasedMemo.Margins.Right= 130;<br>&nbsp; itemsPurchasedMemo.Height = 1;<br>&nbsp; itemsPurchasedMemo.Width = 140;<br>&nbsp; itemsPurchasedMemo.Margins.Top = 30;<br>&nbsp; itemsPurchasedMemo.Margins.Bottom = 30;<br>&nbsp; itemsPurchasedMemo.ReadOnly = True;<br>&nbsp; itemsPurchasedMemo.TextSettings.WordWrap = True;<br><br><br>&nbsp; for(index = 0 to (clMainScript.dailySoldItems.Count - 1))<br>&nbsp; {<br>&nbsp;&nbsp;&nbsp; itemsSoldMemo.Lines.Add(clMainScript.dailySoldItems.GetItem(index));<br>&nbsp; }<br>&nbsp; &nbsp;<br>&nbsp; for(index = 0 to (clMainScript.dailyPurchasedItems.Count - 1))<br>&nbsp; {<br>&nbsp;&nbsp;&nbsp; itemsPurchasedMemo.Lines.Add(clMainScript.dailyPurchasedItems.GetItem(index));<br>&nbsp; }<br>&nbsp; <br>&nbsp; backButton = statsForm.AddNewProButton(statsForm, 'statsForm', 'BACK');<br>&nbsp; clComponent.SetupComponent(backButton,'{"Align" : "Right","MarginBottom":135,"Width" :200,"Height":70}');<br>&nbsp; statsForm.SetImage(backButton,'<a href="https://clomosy.com/demos/foodIn&#102;ormati&#111;nBox.png" target="_blank" rel="nofollow">https://clomosy.com/demos/foodInformationBox.png</a>'); <br>&nbsp; statsForm.AddNewEvent(backButton,tbeOnClick,'Stats.BackToShop');<br>&nbsp; <br>&nbsp; <br>&nbsp; <br>&nbsp; statsForm.Run;<br>}]]>
   </description>
   <pubDate>Fri, 02 Aug 2024 17:52:44 +0000</pubDate>
   <guid isPermaLink="true">https://forum.clomosy.com.tr/forum_posts.asp?TID=797&amp;PID=1395#1395</guid>
  </item> 
  <item>
   <title><![CDATA[iOS&#039;ta unit hatası : Merhaba G&#246;ktu&#287;Bir de kodunu payla&#351;&#305;r...]]></title>
   <link>https://forum.clomosy.com.tr/forum_posts.asp?TID=797&amp;PID=1390#1390</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="https://forum.clomosy.com.tr/member_profile.asp?PF=106">Developer</a><br /><strong>Konu:</strong> 797<br /><strong>Gönderim Zamanı:</strong> 02&nbsp;Ağustos&nbsp;2024 Saat 17:30<br /><br />Merhaba Göktuğ<div>Bir de kodunu paylaşır mısın?</div>]]>
   </description>
   <pubDate>Fri, 02 Aug 2024 17:30:07 +0000</pubDate>
   <guid isPermaLink="true">https://forum.clomosy.com.tr/forum_posts.asp?TID=797&amp;PID=1390#1390</guid>
  </item> 
  <item>
   <title><![CDATA[iOS&#039;ta unit hatası : Merhaba G&#246;ktu&#287;,IOS s&#252;r&#252;m&#252;n&#252; g&#252;nceller...]]></title>
   <link>https://forum.clomosy.com.tr/forum_posts.asp?TID=797&amp;PID=1389#1389</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="https://forum.clomosy.com.tr/member_profile.asp?PF=106">Developer</a><br /><strong>Konu:</strong> 797<br /><strong>Gönderim Zamanı:</strong> 02&nbsp;Ağustos&nbsp;2024 Saat 17:29<br /><br />Merhaba Göktuğ,<div>IOS sürümünü günceller misin?</div>]]>
   </description>
   <pubDate>Fri, 02 Aug 2024 17:29:30 +0000</pubDate>
   <guid isPermaLink="true">https://forum.clomosy.com.tr/forum_posts.asp?TID=797&amp;PID=1389#1389</guid>
  </item> 
  <item>
   <title><![CDATA[iOS&#039;ta unit hatası : Merhabalar,&#350;u anda projemde unitler...]]></title>
   <link>https://forum.clomosy.com.tr/forum_posts.asp?TID=797&amp;PID=1380#1380</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="https://forum.clomosy.com.tr/member_profile.asp?PF=207">goktugrlr</a><br /><strong>Konu:</strong> 797<br /><strong>Gönderim Zamanı:</strong> 02&nbsp;Ağustos&nbsp;2024 Saat 14:01<br /><br /><div>Merhabalar,</div><div><br></div><div>Şu anda projemde unitler arası geçiş var, bilgisayar ve android üzerinden program çalıştırıldığında sıkıntı yaşanmazken iOS cihazımda unit çağrılamıyor. <br></div><div><br></div><div><br></div>]]>
   </description>
   <pubDate>Fri, 02 Aug 2024 14:01:00 +0000</pubDate>
   <guid isPermaLink="true">https://forum.clomosy.com.tr/forum_posts.asp?TID=797&amp;PID=1380#1380</guid>
  </item> 
 </channel>
</rss>